You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Damien George e6cf5fb2cc py/compile: Remove comment about TODO for short circuiting for if-stmt. 8 years ago
..
argcheck.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
asmarm.c py: Implement native multiply operation in viper emitter. 10 years ago
asmarm.h py: Implement native multiply operation in viper emitter. 10 years ago
asmthumb.c py/asmthumb: Flush D-cache, and invalidate I-cache on STM32F7. 8 years ago
asmthumb.h py: Add lsl/lsr/asr opcode support to inline Thumb2 assembler. 9 years ago
asmx64.c py/asmx64: Support all 16 regs in reg to memory move instructions. 9 years ago
asmx64.h py: Implement ptr32 load and store in viper emitter. 9 years ago
asmx86.c py/asmx86: Fix function definition to use int32_t instead of int. 9 years ago
asmx86.h py: Implement native multiply operation in viper emitter. 10 years ago
bc.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
bc.h py/bc.h: Rename _mp_code_state to _mp_code_state_t. 8 years ago
bc0.h py: Combine 3 comprehension opcodes (list/dict/set) into 1. 8 years ago
binary.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
binary.h py/binary: Make return type of mp_binary_get_size size_t instead of int. 10 years ago
builtin.h stmhal/moduselect: Move to extmod/ for reuse by other ports. 8 years ago
builtinevex.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
builtinimport.c py: Factor persistent code load/save funcs into persistentcode.[ch]. 8 years ago
compile.c py/compile: Remove comment about TODO for short circuiting for if-stmt. 8 years ago
compile.h py/compile: Add mp_compile_to_raw_code() to return raw code object. 9 years ago
emit.h py: Combine 3 comprehension emit functions (list/dict/set) into 1. 8 years ago
emitbc.c py: remove asserts that are always true in emitbc.c 8 years ago
emitcommon.c py/scope: Factor common code to find locals and close over them. 8 years ago
emitglue.c py: Factor persistent code load/save funcs into persistentcode.[ch]. 8 years ago
emitglue.h py: Factor persistent code load/save funcs into persistentcode.[ch]. 8 years ago
emitinlinethumb.c py/emitinlinethumb: Use qstrs instead of char* for names of asm ops. 9 years ago
emitnative.c py/emitnative: Fix native import emitter when in viper mode. 8 years ago
formatfloat.c py/formatfloat: Fix further cases of buffer overflow in formatting. 9 years ago
formatfloat.h py: Implement mp_format_float for doubles and use where appropriate 10 years ago
frozenmod.c py: Allow to stat and import frozen mpy files using new frozen "VFS". 9 years ago
frozenmod.h py/{builtinimport,frozenmod}: Rework frozen modules support to support packages. 9 years ago
gc.c py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory. 8 years ago
gc.h py/gc: Calculate (and report) maximum contiguous free block size. 8 years ago
grammar.h py: Simplify "and" action within parser by making ident-rules explicit. 9 years ago
lexer.c py/lexer: Make lexer use an mp_reader as its source. 8 years ago
lexer.h py/lexer: Make lexer use an mp_reader as its source. 8 years ago
makeqstrdata.py py/makeqstrdata.py: Compute the qstr hash from bytes, not characters. 8 years ago
makeqstrdefs.py py/makeqstrdefs.py: Use python 2.6 syntax for set creation. 8 years ago
makeversionhdr.py py/makeversionhdr.py: Work with backslashes in paths. 9 years ago
malloc.c py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory. 8 years ago
map.c py: Declare constant data as properly constant. 9 years ago
misc.h py/vstr: Combine vstr_new_size with vstr_new since they are rarely used. 8 years ago
mkenv.mk py: Move frozen bytecode Makefile rules from ports to common mk files. 8 years ago
mkrules.mk py/*.mk: Replace uses of 'sed' with $(SED). 8 years ago
modarray.c all: Remove 'name' member from mp_obj_module_t struct. 8 years ago
modbuiltins.c py: Add "delattr" builtin, conditional on MICROPY_CPYTHON_COMPAT. 8 years ago
modcmath.c all: Remove 'name' member from mp_obj_module_t struct. 8 years ago
modcollections.c all: Remove 'name' member from mp_obj_module_t struct. 8 years ago
modgc.c all: Remove 'name' member from mp_obj_module_t struct. 8 years ago
modio.c py: Add mp_raise_OSError(errno) helper function. 8 years ago
modmath.c py: Add MICROPY_FLOAT_CONST macro for defining float constants. 8 years ago
modmicropython.c py/modmicropython: Add micropython.opt_level([value]) function. 8 years ago
modstruct.c py/modstruct: Remove unreachable code, and add comment about CPy diff. 8 years ago
modsys.c all: Remove 'name' member from mp_obj_module_t struct. 8 years ago
modthread.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
moduerrno.c all: Remove 'name' member from mp_obj_module_t struct. 8 years ago
mpconfig.h stmhal/moduselect: Move to extmod/ for reuse by other ports. 8 years ago
mperrno.h py/moduerrno: Add ECONNREFUSED, one of frequent networking errors. 9 years ago
mphal.h extmod/utime_mphal: Factor out implementations in terms of mp_hal_* for reuse. 8 years ago
mpprint.c py/objint: Use size_t for arguments that measure bytes/sizes. 8 years ago
mpprint.h lib/utils/pyhelp.c: Use mp_printf() instead of printf() 8 years ago
mpstate.c py: Add MICROPY_DYNAMIC_COMPILER option to config compiler at runtime. 9 years ago
mpstate.h py/gc: Implement GC running by allocation threshold. 8 years ago
mpthread.h py/mpthread: Include mpstate.h when defining GIL macros. 8 years ago
mpz.c py: fix null pointer dereference in mpz.c, fix missing va_end in warning.c 8 years ago
mpz.h py: Factor duplicated function to calculate size of formatted int. 8 years ago
nativeglue.c py/viper: Allow casting of Python integers to viper pointers. 9 years ago
nlr.h py/nlrsetjmp: Update to take into account new location of nlr_top. 8 years ago
nlrsetjmp.c py/nlrsetjmp: Update to take into account new location of nlr_top. 8 years ago
nlrthumb.c py: Fix nlrthumb.c when DEBUG=1 is defined 8 years ago
nlrx64.S py/nlrx64.S: Prefix mp_thread_get_state with an underscore on Mac. 8 years ago
nlrx86.S unix: fix symbol references for x86 Mac 8 years ago
nlrxtensa.S py: Put all global state together in state structures. 10 years ago
obj.c py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible. 8 years ago
obj.h py: Specialise builtin funcs to use separate type for fixed arg count. 8 years ago
objarray.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objarray.h py/objarray: Split out header to allow direct access to object. 8 years ago
objattrtuple.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objbool.c py/objbool: Make a slight simplification of bool constructor. 8 years ago
objboundmeth.c py/objtype: Implement __call__ handling for an instance w/o heap alloc. 8 years ago
objcell.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objclosure.c py: Fix passing of some wide int types to printf varg format list. 9 years ago
objcomplex.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objdict.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objenumerate.c py: Use new code pattern for parsing kw args with mp_arg_parse_all. 9 years ago
objexcept.c py/objexcept: Allow clearing traceback with 'exc.__traceback__ = None'. 8 years ago
objexcept.h py: Change exception traceback data to use size_t instead of mp_uint_t. 9 years ago
objfilter.c py: Get rid of assert() in method argument checking functions. 8 years ago
objfloat.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objfun.c py: Specialise builtin funcs to use separate type for fixed arg count. 8 years ago
objfun.h py: Add constant table to bytecode. 9 years ago
objgenerator.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objgenerator.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objgetitemiter.c py/objgetitemiter: Typo fix in comment. 9 years ago
objint.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objint.h py/objint: Use size_t for arguments that measure bytes/sizes. 8 years ago
objint_longlong.c py/objint: Use size_t for arguments that measure bytes/sizes. 8 years ago
objint_mpz.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objlist.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objlist.h py: Fix adding of traceback so that it appends to existing info. 10 years ago
objmap.c py: Get rid of assert() in method argument checking functions. 8 years ago
objmodule.c stmhal/moduselect: Move to extmod/ for reuse by other ports. 8 years ago
objmodule.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objnamedtuple.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objnone.c py/objnone: Use mp_generic_unary_op instead of custom one. 8 years ago
objobject.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objpolyiter.c py/objpolyiter: Implement instance-polymorphic iterator type. 9 years ago
objproperty.c py: Get rid of assert() in method argument checking functions. 8 years ago
objrange.c py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*. 9 years ago
objreversed.c py: Get rid of assert() in method argument checking functions. 8 years ago
objset.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objsingleton.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objslice.c py: Wrap all obj-ptr conversions in MP_OBJ_TO_PTR/MP_OBJ_FROM_PTR. 9 years ago
objstr.c py/objstr: Remove unreachable function used only for terse error msgs. 8 years ago
objstr.h py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros. 8 years ago
objstringio.c py: Use mp_raise_msg helper function where appropriate. 8 years ago
objstringio.h extmod/modujson: Implement ujson.load() to load JSON from a stream. 8 years ago
objstrunicode.c py/objstr,objstrunicode: Fix inconistent #if indentation. 8 years ago
objtuple.c py/objtuple: In tuple_cmp_helper, use mp_check_self instead of raising. 8 years ago
objtuple.h py: Add MP_ROM_* macros and mp_rom_* types and use them. 9 years ago
objtype.c py/objtype: Implement __call__ handling for an instance w/o heap alloc. 8 years ago
objtype.h py: Change first arg of type.make_new from mp_obj_t to mp_obj_type_t*. 9 years ago
objzip.c py: Get rid of assert() in method argument checking functions. 8 years ago
opmethods.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
parse.c py/parse: Add code to fold logical constants in or/and/not operations. 8 years ago
parse.h py/parse: Make mp_parse_node_new_leaf an inline function. 8 years ago
parsenum.c py: Add MICROPY_FLOAT_CONST macro for defining float constants. 8 years ago
parsenum.h py/parsenum: Use size_t to count bytes, and int for type of base arg. 9 years ago
parsenumbase.c py/parsenum: Fix compiler warnings for no decl and signed comparison. 9 years ago
parsenumbase.h py/parsenum: Use size_t to count bytes, and int for type of base arg. 9 years ago
persistentcode.c py: Factor out persistent-code reader into separate files. 8 years ago
persistentcode.h py: Factor out persistent-code reader into separate files. 8 years ago
py.mk stmhal/moduselect: Move to extmod/ for reuse by other ports. 8 years ago
qstr.c py: Fix wrong assumption that m_renew will not move if shrinking 8 years ago
qstr.h py: Rename __QSTR_EXTRACT flag to NO_QSTR. 9 years ago
qstrdefs.h py: Add rules for automated extraction of qstrs from sources. 9 years ago
reader.c py/lexer: Rewrite mp_lexer_new_from_fd in terms of mp_reader. 8 years ago
reader.h py/lexer: Rewrite mp_lexer_new_from_fd in terms of mp_reader. 8 years ago
repl.c py: Declare constant data as properly constant. 9 years ago
repl.h py, readline: Add tab autocompletion for REPL. 10 years ago
ringbuf.h py/ringbuf.h: Add reusable ring buffer class. 9 years ago
runtime.c py/runtime: mp_resume: Fix exception handling for nanbox port. 8 years ago
runtime.h py/objtype: Implement __call__ handling for an instance w/o heap alloc. 8 years ago
runtime0.h py: Extend native type-sig to use 4 bits, so uint is separate to ptr. 9 years ago
runtime_utils.c py/runtime_utils: Fix nanbox build. 9 years ago
scope.c py/scope: Factor common code to find locals and close over them. 8 years ago
scope.h py/scope: Factor common code to find locals and close over them. 8 years ago
sequence.c py/sequence: Fix reverse slicing of lists. 8 years ago
showbc.c py/showbc: Make printf's go to the platform print stream. 8 years ago
smallint.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
smallint.h py/smallint: Allow to override MP_SMALL_INT_MIN et al. 9 years ago
stackctrl.c py: Add MP_STATE_THREAD to hold state specific to a given thread. 8 years ago
stackctrl.h py/stackctrl: Add mp_stack_set_top() to explicitly set stack top value. 9 years ago
stream.c all: Remove readall() method, which is equivalent to read() w/o args. 8 years ago
stream.h all: Remove readall() method, which is equivalent to read() w/o args. 8 years ago
unicode.c py/repl: Check for an identifier char after the keyword. 9 years ago
unicode.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
vm.c py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object. 8 years ago
vmentrytable.h py: Combine 3 comprehension opcodes (list/dict/set) into 1. 8 years ago
vstr.c py/vstr: Combine vstr_new_size with vstr_new since they are rarely used. 8 years ago
warning.c py: fix null pointer dereference in mpz.c, fix missing va_end in warning.c 8 years ago