micropython/py
Paul Sokolovsky 24a140a444 objexcept: Fix another place missing proper args tuple initialization. 2014-03-30 13:29:33 +03:00
..
asmthumb.c
asmthumb.h
asmx64.c
asmx64.h
bc.h py: Rename mp_exc_stack to mp_exc_stack_t. 2014-03-30 00:57:09 +00:00
bc0.h py: Support closures with default args. 2014-03-26 23:17:44 +02:00
binary.c
binary.h
builtin.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
builtin.h py: Implement getattr() builtin. 2014-03-27 00:11:36 +02:00
builtinevex.c
builtinimport.c
builtintables.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
builtintables.h
compile.c compile: Print error messages on unimplemented relative imports. 2014-03-30 04:16:35 +03:00
compile.h
emit.h py: Factor out code from runtime.c to emitglue.c. 2014-03-27 23:26:35 +00:00
emitbc.c py: Rename emit_pre so they have globally unique names. 2014-03-27 23:30:26 +00:00
emitcommon.c
emitcpy.c
emitglue.c py: Free unique_code slot for outer module. 2014-03-29 11:39:36 +00:00
emitglue.h py: Free unique_code slot for outer module. 2014-03-29 11:39:36 +00:00
emitinlinethumb.c py: Factor out code from runtime.c to emitglue.c. 2014-03-27 23:26:35 +00:00
emitnative.c py: Rename emit_pre so they have globally unique names. 2014-03-27 23:30:26 +00:00
emitpass1.c
formatfloat.c
formatfloat.h
gc.c
gc.h
grammar.h
intdivmod.c
intdivmod.h
lexer.c
lexer.h
lexerstr.c
lexerunix.c
lexerunix.h
makeqstrdata.py
malloc.c
map.c
map.h py: Fix bug in type_store_attr, trying to store to ROM. 2014-03-27 09:32:26 +00:00
misc.h
mkenv.mk
mkrules.mk
modarray.c
modcollections.c
modmath.c
modmicropython.c
mpconfig.h
mpz.c
mpz.h
nlr.h
nlrthumb.S
nlrx64.S
nlrx86.S
obj.c mp_obj_print_exception(): Assert that traceback has sane number of entries. 2014-03-30 04:16:24 +03:00
obj.h py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objarray.c Remove mp_obj_type_t.methods entry and use .locals_dict instead. 2014-03-26 21:47:19 +00:00
objarray.h
objbool.c py: Change mp_const_* objects to macros. 2014-03-29 13:15:08 +00:00
objboundmeth.c
objcell.c
objclosure.c
objcomplex.c py: Fix typo printing complex numbers that are purely imaginary. 2014-03-29 11:41:38 +00:00
objdict.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objenumerate.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objexcept.c objexcept: Fix another place missing proper args tuple initialization. 2014-03-30 13:29:33 +03:00
objfilter.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objfloat.c
objfun.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objgenerator.c objgenerator.throw: Instantiate if exception type passed, just as "raise". 2014-03-30 13:21:11 +03:00
objgenerator.h py: Swap around the double return value of mp_obj_gen_resume. 2014-03-26 19:33:23 +00:00
objgetitemiter.c py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. 2014-03-26 19:27:58 +00:00
objint.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objint.h
objint_longlong.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objint_mpz.c py: Support mpz -op- float, mpz -op- complex, and complex -op- mpz. 2014-03-29 17:28:20 +00:00
objlist.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objmap.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objmodule.c
objmodule.h
objnamedtuple.c py: Change mp_const_* objects to macros. 2014-03-29 13:15:08 +00:00
objnone.c py: Change mp_const_* objects to macros. 2014-03-29 13:15:08 +00:00
objobject.c
objrange.c py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. 2014-03-26 19:27:58 +00:00
objset.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objslice.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objstr.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objtuple.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objtuple.h
objtype.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
objzip.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
parse.c
parse.h
parsehelper.c
parsehelper.h
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
py.mk py: Factor out code from runtime.c to emitglue.c. 2014-03-27 23:26:35 +00:00
qstr.c
qstr.h
qstrdefs.h vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes). 2014-03-29 04:39:24 +02:00
repl.c
repl.h
runtime.c py: Rename old const type objects to mp_type_* for consistency. 2014-03-29 13:43:38 +00:00
runtime.h py: Free unique_code slot for outer module. 2014-03-29 11:39:36 +00:00
runtime0.h py: Factor out code from runtime.c to emitglue.c. 2014-03-27 23:26:35 +00:00
scope.c
scope.h py: Calculate maximum exception stack size in compiler. 2014-03-27 10:55:21 +00:00
sequence.c
showbc.c py: Fix bugs with debugging output. 2014-03-28 18:38:20 +00:00
stream.c py: Replace mp_const_stop_iteration object with MP_OBJ_NULL. 2014-03-26 19:27:58 +00:00
stream.h
unicode.c
vm.c py: Rename mp_exc_stack to mp_exc_stack_t. 2014-03-30 00:57:09 +00:00
vstr.c