micropython/py
Paul Sokolovsky ae184cb9de py/builtinimport: Disable "imported as namespace package" warning.
Namespace packages are natural part of Python3, CPython3 doesn't have such
warning, it made sense only from point of view of Python2 legacy.
2016-07-02 14:45:49 +03:00
..
argcheck.c
asmarm.c
asmarm.h
asmthumb.c
asmthumb.h
asmx64.c
asmx64.h
asmx86.c
asmx86.h
bc.c
bc.h
bc0.h
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
builtinimport.c py/builtinimport: Disable "imported as namespace package" warning. 2016-07-02 14:45:49 +03:00
compile.c py: Declare constant data as properly constant. 2016-05-20 12:46:20 +01:00
compile.h
emit.h
emitbc.c
emitcommon.c
emitglue.c py/emitglue: Fix build on AArch64 (ARMv8, etc.) related to loading .mpy files. 2016-05-12 16:00:57 +03:00
emitglue.h
emitinlinethumb.c
emitnative.c
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: Calculate (and report) maximum contiguous free block size. 2016-07-01 00:09:55 +03:00
gc.h py/gc: Calculate (and report) maximum contiguous free block size. 2016-07-01 00:09:55 +03:00
grammar.h
lexer.c py: Declare constant data as properly constant. 2016-05-20 12:46:20 +01:00
lexer.h
lexerstr.c
lexerunix.c
makeqstrdata.py py/makeqstrdata.py: Allow to have double-quote characters in qstrs. 2016-05-23 15:18:55 +01:00
makeqstrdefs.py py/makeqstrdefs.py: Remove restriction that source path can't be absolute. 2016-06-16 01:04:42 +03:00
makeversionhdr.py
malloc.c
map.c py: Declare constant data as properly constant. 2016-05-20 12:46:20 +01:00
misc.h
mkenv.mk
mkrules.mk py: Rename __QSTR_EXTRACT flag to NO_QSTR. 2016-06-16 01:42:48 +03:00
modarray.c
modbuiltins.c
modcmath.c
modcollections.c
modgc.c
modio.c all: Rename mp_obj_type_t::stream_p to protocol. 2016-06-18 18:44:57 +03:00
modmath.c py/objfloat, py/modmath: Ensure M_PI and M_E defined. 2016-05-12 13:28:45 +01:00
modmicropython.c py: Add MP_STATE_THREAD to hold state specific to a given thread. 2016-06-28 11:09:31 +01:00
modstruct.c py/modstruct: Allow to have "0s" in struct format. 2016-05-28 23:27:38 +01:00
modsys.c
modthread.c py/modthread: Allow to properly set the stack limit of a thread. 2016-06-28 11:28:51 +01:00
moduerrno.c py/moduerrno: Add ECONNREFUSED, one of frequent networking errors. 2016-05-28 00:17:19 +03:00
mpconfig.h py: Implement a simple global interpreter lock. 2016-06-28 11:28:50 +01:00
mperrno.h py/moduerrno: Add ECONNREFUSED, one of frequent networking errors. 2016-05-28 00:17:19 +03:00
mphal.h py/mphal.h: If virtpin API is used, automagically include its header. 2016-06-19 00:12:37 +03:00
mpprint.c
mpprint.h
mpstate.c
mpstate.h py: Implement a simple global interpreter lock. 2016-06-28 11:28:50 +01:00
mpthread.h py/mpthread: Include mpstate.h when defining GIL macros. 2016-06-28 11:28:52 +01:00
mpz.c py/mpz: Fix mpn_div so that it doesn't modify memory of denominator. 2016-05-09 17:21:42 +01:00
mpz.h
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/nlrthumb: Convert NLR thumb funcs from asm to C with inline-asm. 2016-06-28 11:28:52 +01:00
nlrx64.S py: Add basic _thread module, with ability to start a new thread. 2016-06-28 11:28:48 +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
obj.h all: Rename mp_obj_type_t::stream_p to protocol. 2016-06-18 18:44:57 +03:00
objarray.c
objattrtuple.c
objbool.c
objboundmeth.c
objcell.c
objclosure.c
objcomplex.c
objdict.c py/objdict: Implemented OrderedDict equality check. 2016-06-12 17:33:48 +03: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
objfloat.c py/objfloat, py/modmath: Ensure M_PI and M_E defined. 2016-05-12 13:28:45 +01:00
objfun.c
objfun.h
objgenerator.c
objgenerator.h
objgetitemiter.c
objint.c
objint.h
objint_longlong.c
objint_mpz.c py/mpz: Do Python style division/modulo within bignum divmod routine. 2016-05-08 22:21:21 +01:00
objlist.c
objlist.h
objmap.c
objmodule.c py: Add basic _thread module, with ability to start a new thread. 2016-06-28 11:28:48 +01:00
objmodule.h
objnamedtuple.c py/objnamedtuple: Allow passing field names as a tuple. 2016-05-23 21:08:07 +01:00
objnone.c
objobject.c
objpolyiter.c
objproperty.c
objrange.c
objreversed.c
objset.c
objsingleton.c
objslice.c
objstr.c py/objstr: Fix mix-signed comparison in str.center(). 2016-05-22 02:22:14 +03:00
objstr.h py/objstr: Implement str.center(). 2016-05-22 00:13:44 +03:00
objstringio.c all: Rename mp_obj_type_t::stream_p to protocol. 2016-06-18 18:44:57 +03:00
objstrunicode.c py/objstr*: Properly ifdef str.center(). 2016-05-22 01:54:41 +03:00
objtuple.c
objtuple.h
objtype.c py/objtype: Inherit protocol vtable from base class only if it exists. 2016-06-19 00:56:06 +03:00
objtype.h
objzip.c
opmethods.c
parse.c py/parse: Treat constants that start with underscore as private. 2016-06-06 17:28:32 +01:00
parse.h
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
py.mk py: Add basic _thread module, with ability to start a new thread. 2016-06-28 11:28:48 +01:00
qstr.c py: Don't use gc or qstr mutex when the GIL is enabled. 2016-06-28 11:28:50 +01:00
qstr.h py: Rename __QSTR_EXTRACT flag to NO_QSTR. 2016-06-16 01:42:48 +03:00
qstrdefs.h
repl.c py: Declare constant data as properly constant. 2016-05-20 12:46:20 +01:00
repl.h
ringbuf.h
runtime.c py: Implement a simple global interpreter lock. 2016-06-28 11:28:50 +01:00
runtime.h
runtime0.h
runtime_utils.c
scope.c
scope.h
sequence.c
showbc.c
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 all: Rename mp_obj_type_t::stream_p to protocol. 2016-06-18 18:44:57 +03:00
stream.h py/stream: Add mp_stream_close() helper function. 2016-05-20 21:18:49 +03:00
unicode.c
unicode.h
vm.c py: Implement a simple global interpreter lock. 2016-06-28 11:28:50 +01:00
vmentrytable.h py: Declare constant data as properly constant. 2016-05-20 12:46:20 +01:00
vstr.c py/vstr: Change allocation policy, +16 to requested size, instead of *2. 2016-05-10 00:56:51 +03:00
warning.c