micropython/py
Yonatan Goldschmidt 343401c6df py/mpconfig.h: Fix comments mentioning dangling file and variable names. 2019-02-06 00:25:30 +11:00
..
argcheck.c
asmarm.c py/asmarm: Simplify asm_arm_bl_ind to only load via index, not literal. 2018-10-13 15:16:33 +11:00
asmarm.h py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro. 2018-10-13 15:16:33 +11:00
asmbase.c
asmbase.h
asmthumb.c py/asmthumb: Remove unused fun_ptr arg from asm_thumb_bl_ind function. 2018-10-13 15:16:33 +11:00
asmthumb.h py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro. 2018-10-13 15:16:33 +11:00
asmx64.c
asmx64.h py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro. 2018-10-13 15:16:33 +11:00
asmx86.c
asmx86.h py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro. 2018-10-13 15:16:33 +11:00
asmxtensa.c
asmxtensa.h py/emitnative: Remove unused ptr argument from ASM_CALL_IND macro. 2018-10-13 15:16:33 +11:00
bc.c py/bc: Fix calculation of opcode size for opcodes with map caching. 2018-12-13 01:26:55 +11:00
bc.h
bc0.h
binary.c
binary.h
builtin.h py: Add optional support for 2-argument version of built-in next(). 2019-01-27 13:01:28 +11:00
builtinevex.c
builtinhelp.c py/builtinhelp: Only print help re FS modules if external import enabled 2019-02-06 00:23:16 +11:00
builtinimport.c py: Remove calls to file reader functions when these are disabled. 2019-01-27 11:08:25 +11:00
compile.c py/compile: Swap order of pop_block/pop_except in "except as" handler. 2019-01-27 14:09:44 +11:00
compile.h
emit.h py/scope: Optimise scope_find_or_add_id to not need "added" arg. 2018-10-28 00:38:18 +11:00
emitbc.c py: Get optional VM stack overflow check compiling and working again. 2019-01-04 17:09:41 +11:00
emitcommon.c py/scope: Optimise scope_find_or_add_id to not need "added" arg. 2018-10-28 00:38:18 +11:00
emitglue.c
emitglue.h
emitinlinethumb.c
emitinlinextensa.c
emitnarm.c
emitnative.c py/emitnative: Put None/False/True in global native const table. 2018-10-15 00:20:49 +11:00
emitnthumb.c
emitnx64.c
emitnx86.c
emitnxtensa.c
formatfloat.c
formatfloat.h
frozenmod.c
frozenmod.h
gc.c py/gc: Adjust gc_alloc() signature to be able to accept multiple flags. 2018-12-20 17:52:16 +11:00
gc.h py/gc: Adjust gc_alloc() signature to be able to accept multiple flags. 2018-12-20 17:52:16 +11:00
grammar.h
lexer.c
lexer.h
makeqstrdata.py
makeqstrdefs.py
makeversionhdr.py py/mpconfig: Move MICROPY_VERSION macros to static ones in mpconfig.h. 2018-12-22 01:40:38 +11:00
malloc.c
map.c
misc.h
mkenv.mk
mkrules.mk
modarray.c
modbuiltins.c py: Add optional support for 2-argument version of built-in next(). 2019-01-27 13:01:28 +11:00
modcmath.c
modcollections.c
modgc.c
modio.c py/modio: Make iobase_singleton object const so it goes in ROM. 2019-01-10 23:08:07 +11:00
modmath.c
modmicropython.c
modstruct.c
modsys.c py/mpconfig: Move MICROPY_VERSION macros to static ones in mpconfig.h. 2018-12-22 01:40:38 +11:00
modthread.c
moduerrno.c
mpconfig.h py/mpconfig.h: Fix comments mentioning dangling file and variable names. 2019-02-06 00:25:30 +11:00
mperrno.h
mphal.h
mpprint.c
mpprint.h
mpstate.c
mpstate.h py: Add option to reduce GC stack integer size to save RAM. 2018-12-04 17:17:25 +11:00
mpthread.h
mpz.c
mpz.h
nativeglue.c py/emitnative: Put None/False/True in global native const table. 2018-10-15 00:20:49 +11:00
nlr.c
nlr.h
nlrsetjmp.c
nlrthumb.c
nlrx64.c
nlrx86.c
nlrxtensa.c
obj.c py/warning: Support categories for warnings. 2019-01-31 16:48:30 +11:00
obj.h py/obj.h: Explicitly cast args to uint32_t in MP_OBJ_FUN_MAKE_SIG. 2019-01-25 16:03:05 +11:00
objarray.c py/objarray: Introduce "memview_offset" alias for "free" field of object 2018-12-20 17:40:48 +11:00
objarray.h py/objarray: Introduce "memview_offset" alias for "free" field of object 2018-12-20 17:40:48 +11:00
objattrtuple.c
objbool.c
objboundmeth.c py/objboundmeth: Support loading generic attrs from the method. 2018-12-06 18:02:41 +11:00
objcell.c
objclosure.c
objcomplex.c
objdeque.c
objdict.c py/objdict: Make .fromkeys() method configurable. 2018-12-13 01:20:55 +11:00
objenumerate.c
objexcept.c py/objexcept: Make sure mp_obj_new_exception_msg doesn't copy/format msg 2018-12-10 16:01:05 +11:00
objexcept.h
objfilter.c
objfloat.c
objfun.c py: Fix location of VM returned exception in invalid opcode and comments 2019-01-04 17:22:40 +11:00
objfun.h
objgenerator.c
objgenerator.h
objgetitemiter.c
objint.c py/obj: Add support for __int__ special method. 2018-12-07 17:28:04 +11:00
objint.h
objint_longlong.c
objint_mpz.c
objlist.c
objlist.h
objmap.c
objmodule.c py/objmodule: Implement PEP 562's __getattr__ for modules. 2018-10-23 11:22:50 +11:00
objmodule.h
objnamedtuple.c
objnamedtuple.h
objnone.c
objobject.c
objpolyiter.c
objproperty.c
objrange.c
objreversed.c
objset.c
objsingleton.c
objslice.c
objstr.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
objstr.h
objstringio.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
objstringio.h
objstrunicode.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
objtuple.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
objtuple.h
objtype.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
objtype.h
objzip.c
opmethods.c
parse.c
parse.h
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
persistentcode.c py: Remove calls to file reader functions when these are disabled. 2019-01-27 11:08:25 +11:00
persistentcode.h
py.mk py/py.mk: Fix broken Gmane URL. 2018-12-04 01:03:44 +11:00
pystack.c
pystack.h
qstr.c py/qstr: Put a lower bound on new qstr pool allocation. 2018-12-15 14:32:09 +11:00
qstr.h
qstrdefs.h
reader.c
reader.h
repl.c
repl.h
ringbuf.h
runtime.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
runtime.h py/warning: Support categories for warnings. 2019-01-31 16:48:30 +11:00
runtime0.h py/obj: Add support for __int__ special method. 2018-12-07 17:28:04 +11:00
runtime_utils.c
scheduler.c
scope.c py/scope: Optimise scope_find_or_add_id to not need "added" arg. 2018-10-28 00:38:18 +11:00
scope.h py/scope: Optimise scope_find_or_add_id to not need "added" arg. 2018-10-28 00:38:18 +11:00
sequence.c
showbc.c
smallint.c
smallint.h
stackctrl.c
stackctrl.h
stream.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
stream.h
unicode.c py/unicode: Fix check for valid utf8 being stricter about contn chars. 2018-11-26 16:13:08 +11:00
unicode.h
vm.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00
vmentrytable.h
vstr.c
warning.c py: Update my copyright info on some files. 2019-02-06 00:19:00 +11:00