micropython/py
Damien George 56606f3475 py: Implement delete for property and descriptors.
Without this patch deleting a property, or class with descriptor, will
call the setter with a NULL value and lead to a crash.
2015-04-04 20:15:31 +01:00
..
argcheck.c
asmarm.c
asmarm.h
asmthumb.c
asmthumb.h
asmx64.c py: Implement closures in native code generator. 2015-04-03 15:05:53 +01:00
asmx64.h
asmx86.c
asmx86.h
bc.c vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 2015-04-03 00:03:07 +03:00
bc.h vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 2015-04-03 00:03:07 +03:00
bc0.h
binary.c
binary.h
builtin.h
builtinevex.c
builtinimport.c
compile.c py, compiler: When just bytecode, make explicit calls instead of table. 2015-03-26 16:52:45 +00:00
compile.h
emit.h py, compiler: When just bytecode, make explicit calls instead of table. 2015-03-26 16:52:45 +00:00
emitbc.c py, compiler: When just bytecode, make explicit calls instead of table. 2015-03-26 16:52:45 +00:00
emitcommon.c py, compiler: Refactor load/store/delete_id logic to reduce code size. 2015-03-26 16:52:45 +00:00
emitcpy.c py, compiler: Remove emit_pass1 code, using emit_bc to do its job. 2015-03-26 16:52:45 +00:00
emitglue.c
emitglue.h
emitinlinethumb.c
emitnative.c py: Fix bug in native emitter when closing over an argument. 2015-04-03 15:03:24 +00:00
formatfloat.c
formatfloat.h
frozenmod.c
frozenmod.h
gc.c py: Make heap printing compatible with 16-bit word size. 2015-04-03 14:11:13 +01:00
gc.h
grammar.h
lexer.c
lexer.h
lexerstr.c
lexerunix.c
makeqstrdata.py makeqstrdata.py: Add support for strings with backslash escapes. 2015-04-02 01:10:11 +03:00
malloc.c
map.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
misc.h
mkenv.mk
mkrules.mk
modarray.c
modbuiltins.c modbuiltins: round(): Accept second arg, and at least support it to be 0. 2015-03-31 01:02:44 +03:00
modcmath.c
modcollections.c py: Implement core of OrderedDict type. 2015-03-20 17:26:10 +00:00
modgc.c
modio.c
modmath.c
modmicropython.c
modstruct.c
modsys.c
mpconfig.h objstr: Add .splitlines() method. 2015-04-04 00:09:48 +03:00
mpstate.c
mpstate.h
mpz.c
mpz.h py: Allow MPZ_DIG_SIZE to be optionally configured by a port. 2015-04-03 14:11:13 +01:00
nativeglue.c py: Implement closures in native code generator. 2015-04-03 15:05:53 +01:00
nlr.h
nlrsetjmp.c
nlrthumb.S
nlrx64.S
nlrx86.S
nlrxtensa.S
obj.c
obj.h py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objarray.c
objbool.c
objboundmeth.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objcell.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objclosure.c
objcomplex.c
objdict.c objdict: Cast mp_obj_t to concrete types explicitly. 2015-03-26 12:28:56 +02:00
objenumerate.c
objexcept.c
objexcept.h
objfilter.c
objfloat.c
objfun.c py: Add finer configuration of static funcs when not in stackless mode. 2015-04-02 22:56:58 +01:00
objfun.h
objgenerator.c py: Allow retrieving a function's __name__. 2015-03-20 23:13:32 +00:00
objgenerator.h
objgetitemiter.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objint.c
objint.h
objint_longlong.c
objint_mpz.c
objlist.c py: Cast mp_obj_t to concrete types explicitly. 2015-03-25 09:25:41 +02:00
objlist.h
objmap.c
objmodule.c py: Implement core of OrderedDict type. 2015-03-20 17:26:10 +00:00
objmodule.h
objnamedtuple.c objnamedtuple: Accept field list as a string. 2015-03-23 22:45:14 +02:00
objnone.c
objobject.c
objproperty.c
objrange.c
objreversed.c
objset.c py: Clarify API for map/set lookup when removing&adding at once. 2015-03-20 17:41:37 +00:00
objslice.c
objstr.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
objstr.h objstr: Add .splitlines() method. 2015-04-04 00:09:48 +03:00
objstringio.c
objstrunicode.c py: In str unicode, str_subscr will never be passed a bytes object. 2015-04-04 19:42:03 +01:00
objtuple.c
objtuple.h
objtype.c py: Implement delete for property and descriptors. 2015-04-04 20:15:31 +01:00
objtype.h
objzip.c
opmethods.c
parse.c
parse.h
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
pfenv.c py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
pfenv.h
pfenv_printf.c
py-version.sh
py.mk py, compiler: Remove emit_pass1 code, using emit_bc to do its job. 2015-03-26 16:52:45 +00:00
qstr.c
qstr.h py: Some trivial cosmetic changes, for code style consistency. 2015-04-04 15:53:11 +01:00
qstrdefs.h py: Implement delete for property and descriptors. 2015-04-04 20:15:31 +01:00
repl.c
repl.h
runtime.c py: Add finer configuration of static funcs when not in stackless mode. 2015-04-02 22:56:58 +01:00
runtime.h py: Add finer configuration of static funcs when not in stackless mode. 2015-04-02 22:56:58 +01:00
runtime0.h py: Implement closures in native code generator. 2015-04-03 15:05:53 +01:00
scope.c
scope.h
sequence.c
showbc.c
smallint.c
smallint.h py: Allow configurable object representation, with 2 different options. 2015-04-03 14:11:13 +01:00
stackctrl.c vm: Support strict stackless mode, with proper exception reporting. 2015-04-03 00:26:47 +03:00
stackctrl.h
stream.c
stream.h
unicode.c
unicode.h
vm.c py: Add finer configuration of static funcs when not in stackless mode. 2015-04-02 22:56:58 +01:00
vmentrytable.h
vstr.c
warning.c