.. |
argcheck.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
asmarm.c
|
…
|
|
asmarm.h
|
…
|
|
asmthumb.c
|
py/asmthumb: Flush D-cache, and invalidate I-cache on STM32F7.
|
2016-09-09 14:48:15 +10:00 |
asmthumb.h
|
…
|
|
asmx64.c
|
…
|
|
asmx64.h
|
…
|
|
asmx86.c
|
…
|
|
asmx86.h
|
…
|
|
bc.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
bc.h
|
py/bc.h: Rename _mp_code_state to _mp_code_state_t.
|
2016-08-27 23:23:51 +10:00 |
bc0.h
|
py: Combine 3 comprehension opcodes (list/dict/set) into 1.
|
2016-09-19 12:28:03 +10:00 |
binary.c
|
…
|
|
binary.h
|
…
|
|
builtin.h
|
py: Add basic _thread module, with ability to start a new thread.
|
2016-06-28 11:28:48 +01:00 |
builtinevex.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
builtinimport.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
compile.c
|
py/compile: Remove debugging code for compiler dispatch.
|
2016-10-12 10:20:48 +11:00 |
compile.h
|
…
|
|
emit.h
|
py: Combine 3 comprehension emit functions (list/dict/set) into 1.
|
2016-09-19 12:23:31 +10:00 |
emitbc.c
|
py/emitbc: Remove/refactor unreachable code, to improve coverage.
|
2016-09-27 15:46:50 +10:00 |
emitcommon.c
|
py/scope: Factor common code to find locals and close over them.
|
2016-09-30 13:53:00 +10:00 |
emitglue.c
|
esp8266: Enable importing of precompiled .mpy files.
|
2016-10-12 11:03:58 +11:00 |
emitglue.h
|
py/emitglue: Make mp_raw_code_t* arguments constant pointers.
|
2016-04-13 16:05:43 +01:00 |
emitinlinethumb.c
|
…
|
|
emitnative.c
|
py: Combine 3 comprehension emit functions (list/dict/set) into 1.
|
2016-09-19 12:23:31 +10:00 |
formatfloat.c
|
…
|
|
formatfloat.h
|
…
|
|
frozenmod.c
|
py: Allow to stat and import frozen mpy files using new frozen "VFS".
|
2016-05-23 12:42:23 +01:00 |
frozenmod.h
|
py/{builtinimport,frozenmod}: Rework frozen modules support to support packages.
|
2016-05-21 21:38:50 +03:00 |
gc.c
|
py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory.
|
2016-08-26 15:35:26 +10:00 |
gc.h
|
py/gc: Calculate (and report) maximum contiguous free block size.
|
2016-07-01 00:09:55 +03:00 |
grammar.h
|
py: Simplify "and" action within parser by making ident-rules explicit.
|
2016-04-14 13:49:23 +01:00 |
lexer.c
|
py/lexer: Remove unnecessary code, and unreachable code.
|
2016-10-12 11:00:17 +11:00 |
lexer.h
|
…
|
|
lexerstr.c
|
…
|
|
lexerunix.c
|
…
|
|
makeqstrdata.py
|
py/makeqstrdata.py: Compute the qstr hash from bytes, not characters.
|
2016-09-02 14:32:47 +10:00 |
makeqstrdefs.py
|
py/makeqstrdefs.py: Use python 2.6 syntax for set creation.
|
2016-09-09 23:01:23 +10:00 |
makeversionhdr.py
|
…
|
|
malloc.c
|
py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory.
|
2016-08-26 15:35:26 +10:00 |
map.c
|
py: Declare constant data as properly constant.
|
2016-05-20 12:46:20 +01:00 |
misc.h
|
py/vstr: Combine vstr_new_size with vstr_new since they are rarely used.
|
2016-10-14 16:46:34 +11:00 |
mkenv.mk
|
py: Move frozen modules rules from esp8266 port for reuse across ports.
|
2016-09-17 21:00:40 +03:00 |
mkrules.mk
|
py: Move frozen modules rules from esp8266 port for reuse across ports.
|
2016-09-17 21:00:40 +03:00 |
modarray.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
modbuiltins.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
modcmath.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
modcollections.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
modgc.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
modio.c
|
py: Add mp_raise_OSError(errno) helper function.
|
2016-10-07 13:31:59 +11:00 |
modmath.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
modmicropython.c
|
py/modmicropython: Add micropython.opt_level([value]) function.
|
2016-10-11 10:56:22 +11:00 |
modstruct.c
|
py/modstruct: Remove unreachable code, and add comment about CPy diff.
|
2016-10-07 12:54:14 +11:00 |
modsys.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
modthread.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
moduerrno.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
mpconfig.h
|
extmod/utime_mphal: Factor out implementations in terms of mp_hal_* for reuse.
|
2016-10-14 20:14:01 +03:00 |
mperrno.h
|
py/moduerrno: Add ECONNREFUSED, one of frequent networking errors.
|
2016-05-28 00:17:19 +03:00 |
mphal.h
|
extmod/utime_mphal: Factor out implementations in terms of mp_hal_* for reuse.
|
2016-10-14 20:14:01 +03:00 |
mpprint.c
|
py/objint: Use size_t for arguments that measure bytes/sizes.
|
2016-10-11 13:20:11 +11:00 |
mpprint.h
|
…
|
|
mpstate.c
|
…
|
|
mpstate.h
|
py/gc: Implement GC running by allocation threshold.
|
2016-07-21 00:37:30 +03:00 |
mpthread.h
|
py/mpthread: Include mpstate.h when defining GIL macros.
|
2016-06-28 11:28:52 +01:00 |
mpz.c
|
py: Factor duplicated function to calculate size of formatted int.
|
2016-10-11 13:11:32 +11:00 |
mpz.h
|
py: Factor duplicated function to calculate size of formatted int.
|
2016-10-11 13:11:32 +11:00 |
nativeglue.c
|
…
|
|
nlr.h
|
py/nlrsetjmp: Update to take into account new location of nlr_top.
|
2016-06-28 11:28:52 +01:00 |
nlrsetjmp.c
|
py/nlrsetjmp: Update to take into account new location of nlr_top.
|
2016-06-28 11:28:52 +01:00 |
nlrthumb.c
|
py: Fix nlrthumb.c when DEBUG=1 is defined
|
2016-07-21 00:54:21 +03:00 |
nlrx64.S
|
py/nlrx64.S: Prefix mp_thread_get_state with an underscore on Mac.
|
2016-07-11 14:27:47 +01:00 |
nlrx86.S
|
py: Add basic _thread module, with ability to start a new thread.
|
2016-06-28 11:28:48 +01:00 |
nlrxtensa.S
|
…
|
|
obj.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
obj.h
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
objarray.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objarray.h
|
py/objarray: Split out header to allow direct access to object.
|
2016-07-06 18:19:27 +03:00 |
objattrtuple.c
|
…
|
|
objbool.c
|
py/objbool: Make a slight simplification of bool constructor.
|
2016-09-30 17:02:07 +10:00 |
objboundmeth.c
|
…
|
|
objcell.c
|
…
|
|
objclosure.c
|
…
|
|
objcomplex.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objdict.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objenumerate.c
|
…
|
|
objexcept.c
|
py/objexcept: Don't convert errno to str in constructor, do it in print.
|
2016-05-12 14:27:52 +01:00 |
objexcept.h
|
…
|
|
objfilter.c
|
py: Get rid of assert() in method argument checking functions.
|
2016-08-12 22:39:03 +03:00 |
objfloat.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objfun.c
|
py/objfun: Use if instead of switch to check return value of VM execute.
|
2016-09-27 23:08:10 +10:00 |
objfun.h
|
…
|
|
objgenerator.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objgenerator.h
|
…
|
|
objgetitemiter.c
|
…
|
|
objint.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objint.h
|
py/objint: Use size_t for arguments that measure bytes/sizes.
|
2016-10-11 13:20:11 +11:00 |
objint_longlong.c
|
py/objint: Use size_t for arguments that measure bytes/sizes.
|
2016-10-11 13:20:11 +11:00 |
objint_mpz.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objlist.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objlist.h
|
…
|
|
objmap.c
|
py: Get rid of assert() in method argument checking functions.
|
2016-08-12 22:39:03 +03:00 |
objmodule.c
|
all: Remove 'name' member from mp_obj_module_t struct.
|
2016-09-22 00:23:16 +10:00 |
objmodule.h
|
…
|
|
objnamedtuple.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objnone.c
|
py/objnone: Use mp_generic_unary_op instead of custom one.
|
2016-09-19 12:28:55 +10:00 |
objobject.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objpolyiter.c
|
…
|
|
objproperty.c
|
py: Get rid of assert() in method argument checking functions.
|
2016-08-12 22:39:03 +03:00 |
objrange.c
|
…
|
|
objreversed.c
|
py: Get rid of assert() in method argument checking functions.
|
2016-08-12 22:39:03 +03:00 |
objset.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objsingleton.c
|
…
|
|
objslice.c
|
…
|
|
objstr.c
|
py/objstr: Remove unreachable function used only for terse error msgs.
|
2016-09-27 15:45:42 +10:00 |
objstr.h
|
py: If str/bytes hash is 0 then explicitly compute it.
|
2016-09-02 14:49:50 +10:00 |
objstringio.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objstringio.h
|
extmod/modujson: Implement ujson.load() to load JSON from a stream.
|
2016-10-13 11:46:14 +11:00 |
objstrunicode.c
|
py/objstr,objstrunicode: Fix inconistent #if indentation.
|
2016-08-07 15:24:57 +03:00 |
objtuple.c
|
py/objtuple: In tuple_cmp_helper, use mp_check_self instead of raising.
|
2016-08-14 16:28:05 +10:00 |
objtuple.h
|
…
|
|
objtype.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
objtype.h
|
…
|
|
objzip.c
|
py: Get rid of assert() in method argument checking functions.
|
2016-08-12 22:39:03 +03:00 |
opmethods.c
|
…
|
|
parse.c
|
py/parse: Only replace constants that are standalone identifiers.
|
2016-09-23 17:23:16 +10:00 |
parse.h
|
…
|
|
parsenum.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
parsenum.h
|
…
|
|
parsenumbase.c
|
…
|
|
parsenumbase.h
|
…
|
|
py.mk
|
extmod/utime_mphal: Factor out implementations in terms of mp_hal_* for reuse.
|
2016-10-14 20:14:01 +03:00 |
qstr.c
|
py/qstr: Remove a comment.
|
2016-09-19 13:18:54 +10:00 |
qstr.h
|
py: Rename __QSTR_EXTRACT flag to NO_QSTR.
|
2016-06-16 01:42:48 +03:00 |
qstrdefs.h
|
py: Add rules for automated extraction of qstrs from sources.
|
2016-04-16 13:18:09 +01:00 |
repl.c
|
py: Declare constant data as properly constant.
|
2016-05-20 12:46:20 +01:00 |
repl.h
|
…
|
|
ringbuf.h
|
…
|
|
runtime.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
runtime.h
|
py: Add mp_raise_OSError(errno) helper function.
|
2016-10-07 13:31:59 +11:00 |
runtime0.h
|
…
|
|
runtime_utils.c
|
py/runtime_utils: Fix nanbox build.
|
2016-04-25 20:03:14 +03:00 |
scope.c
|
py/scope: Factor common code to find locals and close over them.
|
2016-09-30 13:53:00 +10:00 |
scope.h
|
py/scope: Factor common code to find locals and close over them.
|
2016-09-30 13:53:00 +10:00 |
sequence.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
showbc.c
|
py/showbc: Make printf's go to the platform print stream.
|
2016-09-20 11:30:54 +10:00 |
smallint.c
|
…
|
|
smallint.h
|
…
|
|
stackctrl.c
|
py: Add MP_STATE_THREAD to hold state specific to a given thread.
|
2016-06-28 11:09:31 +01:00 |
stackctrl.h
|
…
|
|
stream.c
|
py: Use mp_raise_msg helper function where appropriate.
|
2016-10-17 12:17:37 +11:00 |
stream.h
|
py/mpconfig.h: Add MICROPY_STREAMS_POSIX_API setting.
|
2016-07-30 20:05:56 +03:00 |
unicode.c
|
…
|
|
unicode.h
|
…
|
|
vm.c
|
py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object.
|
2016-09-27 13:21:23 +10:00 |
vmentrytable.h
|
py: Combine 3 comprehension opcodes (list/dict/set) into 1.
|
2016-09-19 12:28:03 +10:00 |
vstr.c
|
py/vstr: Combine vstr_new_size with vstr_new since they are rarely used.
|
2016-10-14 16:46:34 +11:00 |
warning.c
|
…
|
|