micropython/py
Damien George fdfcee7b1e py/parse: Make parser error handling cleaner, less spaghetti-like. 2015-10-12 12:59:18 +01:00
..
argcheck.c py: Use mp_not_implemented consistently for not implemented features. 2015-09-03 23:14:06 +01:00
asmarm.c py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
asmarm.h py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
asmthumb.c
asmthumb.h
asmx64.c py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
asmx64.h py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
asmx86.c py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
asmx86.h py: Implement native multiply operation in viper emitter. 2015-06-04 14:00:29 +00:00
bc.c py: Eliminate some cases which trigger unused parameter warnings. 2015-09-04 16:53:46 +01:00
bc.h
bc0.h py: Remove mp_load_const_bytes and instead load precreated bytes object. 2015-06-25 14:42:13 +00:00
binary.c py/objarray: Allow to create array of void pointers, as extension to CPython. 2015-10-12 10:13:51 +03:00
binary.h
builtin.h modussl: SSL socket wrapper module based on axTLS. 2015-10-06 18:10:39 +03:00
builtinevex.c
builtinimport.c builtinimport: Fix running package submodule with -m. 2015-06-29 00:26:45 +03:00
compile.c py: Move constant folding from compiler to parser. 2015-10-12 12:58:45 +01:00
compile.h py: Allocate parse nodes in chunks to reduce fragmentation and RAM use. 2015-10-02 00:11:11 +01:00
emit.h unix-cpy: Remove unix-cpy. It's no longer needed. 2015-08-17 12:51:26 +01:00
emitbc.c py: Slightly simplify compile and emit of star/double-star arguments. 2015-09-23 11:47:01 +01:00
emitcommon.c unix-cpy: Remove unix-cpy. It's no longer needed. 2015-08-17 12:51:26 +01:00
emitglue.c
emitglue.h
emitinlinethumb.c
emitnative.c py/emitnative: Raise ViperTypeError for unsupported unary ops. 2015-10-08 13:08:59 +01:00
formatfloat.c stmhal: fix single precision float printing error 2015-09-11 23:09:50 +03:00
formatfloat.h
frozenmod.c frozenmod: Include header with function prototypes. 2015-05-31 23:02:04 +03:00
frozenmod.h
gc.c py: Eliminate some cases which trigger unused parameter warnings. 2015-09-04 16:53:46 +01:00
gc.h py: Improve allocation policy of qstr data. 2015-07-14 22:56:32 +01:00
grammar.h py: Don't generate unnecessary parse nodes for assignment or kwargs. 2015-10-08 14:26:01 +01:00
lexer.c py/lexer: Properly classify floats that look like hex numbers. 2015-09-07 17:33:44 +01:00
lexer.h unix: Allow to cat a script into stdin from the command line. 2015-06-04 23:42:45 +01:00
lexerstr.c
lexerunix.c unix: Allow to cat a script into stdin from the command line. 2015-06-04 23:42:45 +01:00
makeqstrdata.py py/makeqstrdata.py: Catch and report case of empty input file. 2015-10-11 11:09:57 +03:00
makeversionhdr.py py/makeversionhdr.py: Use returncode attr to be Python2.7 compat. 2015-08-12 23:28:16 +01:00
malloc.c py: Improve allocation policy of qstr data. 2015-07-14 22:56:32 +01:00
map.c
misc.h py: Improve allocation policy of qstr data. 2015-07-14 22:56:32 +01:00
mkenv.mk py: Treat -m32 flag as part of CC, LD, etc. 2015-08-29 21:18:10 +03:00
mkrules.mk unix-cpy: Remove unix-cpy. It's no longer needed. 2015-08-17 12:51:26 +01:00
modarray.c
modbuiltins.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
modcmath.c
modcollections.c
modgc.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
modio.c
modmath.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
modmicropython.c
modstruct.c modstruct: Raise NotImplementedError for unsupported repeat specification. 2015-07-05 22:44:14 +03:00
modsys.c py: Eliminate some cases which trigger unused parameter warnings. 2015-09-04 16:53:46 +01:00
mpconfig.h py: Move constant folding from compiler to parser. 2015-10-12 12:58:45 +01:00
mpprint.c
mpprint.h
mpstate.c
mpstate.h py: Improve allocation policy of qstr data. 2015-07-14 22:56:32 +01:00
mpz.c py/mpz: Fix bignum anding of large negative with smaller positive int. 2015-10-01 22:35:06 +01:00
mpz.h py/mpz: Force rhs of mpz_shl_inpl/mpz_shr_inpl to be unsigned. 2015-10-01 18:01:37 +01:00
nativeglue.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
nlr.h
nlrsetjmp.c
nlrthumb.S
nlrx64.S
nlrx86.S
nlrxtensa.S
obj.c py: Inline single use of mp_obj_str_get_len in mp_obj_len_maybe. 2015-09-03 23:01:07 +01:00
obj.h py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objarray.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objattrtuple.c
objbool.c py/objbool: Simplify dispatch of bool binary op. 2015-09-04 16:46:15 +01:00
objboundmeth.c
objcell.c
objclosure.c
objcomplex.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objdict.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objenumerate.c py: Eliminate some cases which trigger unused parameter warnings. 2015-09-04 16:53:46 +01:00
objexcept.c py: Improve allocation policy of qstr data. 2015-07-14 22:56:32 +01:00
objexcept.h
objfilter.c py: Add MICROPY_PY_BUILTINS_FILTER, disable for minimal ports. 2015-08-20 01:05:11 +03:00
objfloat.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objfun.c py: Allow viper functions to take up to 4 arguments. 2015-07-23 14:11:29 +01:00
objfun.h
objgenerator.c
objgenerator.h
objgetitemiter.c py/objgetitemiter: Make it_iternext() recognize IndexError. 2015-08-30 11:49:49 +01:00
objint.c
objint.h
objint_longlong.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objint_mpz.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objlist.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objlist.h
objmap.c
objmodule.c modussl: SSL socket wrapper module based on axTLS. 2015-10-06 18:10:39 +03:00
objmodule.h
objnamedtuple.c
objnone.c
objobject.c
objproperty.c
objrange.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objreversed.c
objset.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objsingleton.c
objslice.c py/objslice: Fix indent. 2015-09-15 22:46:30 +01:00
objstr.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objstr.h
objstringio.c
objstrunicode.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objtuple.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
objtuple.h
objtype.c py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin. 2015-06-13 23:36:30 +01:00
objtype.h
objzip.c
opmethods.c
parse.c py/parse: Make parser error handling cleaner, less spaghetti-like. 2015-10-12 12:59:18 +01:00
parse.h py: Allocate parse nodes in chunks to reduce fragmentation and RAM use. 2015-10-02 00:11:11 +01:00
parsenum.c py/parsenum: Provide detailed error for int parsing with escaped bytes. 2015-10-01 17:18:12 +01:00
parsenum.h
parsenumbase.c
parsenumbase.h
py.mk modussl: SSL socket wrapper module based on axTLS. 2015-10-06 18:10:39 +03:00
qstr.c py: Make qstr hash size configurable, defaults to 2 bytes. 2015-07-20 11:03:13 +00:00
qstr.h
qstrdefs.h modussl: SSL socket wrapper module based on axTLS. 2015-10-06 18:10:39 +03:00
repl.c py/repl: Treat escaped quotes correctly in REPL continuation. 2015-09-19 14:06:23 +01:00
repl.h
runtime.c py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming. 2015-10-11 15:18:15 +03:00
runtime.h py: Remove mp_load_const_bytes and instead load precreated bytes object. 2015-06-25 14:42:13 +00:00
runtime0.h py: Remove unused compile scope flags, and irrelevant flag compute code. 2015-08-17 22:39:03 +01:00
scope.c unix-cpy: Remove unix-cpy. It's no longer needed. 2015-08-17 12:51:26 +01:00
scope.h unix-cpy: Remove unix-cpy. It's no longer needed. 2015-08-17 12:51:26 +01:00
sequence.c
showbc.c py: Remove mp_load_const_bytes and instead load precreated bytes object. 2015-06-25 14:42:13 +00:00
smallint.c
smallint.h
stackctrl.c
stackctrl.h
stream.c py: Add stream_tell method, and use for unix and stmhal file tell. 2015-08-13 22:56:32 +01:00
stream.h py: Add stream_tell method, and use for unix and stmhal file tell. 2015-08-13 22:56:32 +01:00
unicode.c
unicode.h
vm.c vm: Handle "raise X from Y" statements the best way we can. 2015-09-01 10:39:04 +03:00
vmentrytable.h py: Remove mp_load_const_bytes and instead load precreated bytes object. 2015-06-25 14:42:13 +00:00
vstr.c py: Prevent many extra vstr allocations. 2015-07-06 17:29:27 +01:00
warning.c