micropython/py
Damien George 729f7b42d6 py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.
mp_obj_t->subscr now does load/store/delete.
2014-04-17 22:10:53 +01:00
..
asmthumb.c py: Big improvements to inline assembler. 2014-04-13 00:30:32 +01:00
asmthumb.h py: Big improvements to inline assembler. 2014-04-13 00:30:32 +01:00
asmx64.c
asmx64.h
bc.h
bc0.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
binary.c
binary.h
builtin.c py: Make built-in 'range' a class. 2014-04-17 18:18:55 +01:00
builtin.h py: Make built-in 'range' a class. 2014-04-17 18:18:55 +01:00
builtinevex.c py: Add traceback info to syntax errors. 2014-04-13 11:56:02 +01:00
builtinimport.c builtinimport: Add basic support for namespace packages. 2014-04-15 01:30:25 +03:00
builtintables.c py: Make built-in 'range' a class. 2014-04-17 18:18:55 +01:00
builtintables.h
compile.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
compile.h
emit.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
emitbc.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
emitcommon.c Merge pull request #471 from errordeveloper/misc_fix/unistd 2014-04-13 13:22:36 +01:00
emitcpy.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
emitglue.c py: Remove unique_codes from emitglue.c. Replace with pointers. 2014-04-13 11:04:33 +01:00
emitglue.h py: Remove unique_codes from emitglue.c. Replace with pointers. 2014-04-13 11:04:33 +01:00
emitinlinethumb.c py: Remove unique_codes from emitglue.c. Replace with pointers. 2014-04-13 11:04:33 +01:00
emitnative.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
emitpass1.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
formatfloat.c
formatfloat.h
gc.c
gc.h
grammar.h
lexer.c
lexer.h
lexerstr.c
lexerunix.c py: Adjust #includes in lexerunix.c. 2014-04-13 13:25:05 +01:00
lexerunix.h
makeqstrdata.py py: Add builtin functions bin and oct, and some tests for them. 2014-04-15 22:03:55 +01:00
malloc.c
map.c
misc.h
mkenv.mk Have make remove targets if a recipie fails. 2014-04-16 11:36:44 -07:00
mkrules.mk build: Simplify build directory layout by putting all headers in genhdr. 2014-04-17 18:03:27 +01:00
modarray.c
modcmath.c py: Add cmath module, for complex math. Disabled by default. 2014-04-17 17:11:03 +01:00
modcollections.c py: Rename collections module to _collections. 2014-04-13 10:24:00 +03:00
modio.c
modmath.c py: Add cmath module, for complex math. Disabled by default. 2014-04-17 17:11:03 +01:00
modmicropython.c
modstruct.c
modsys.c modsys: Implement sys.version. 2014-04-14 01:46:45 +03:00
mpconfig.h py: Add cmath module, for complex math. Disabled by default. 2014-04-17 17:11:03 +01:00
mpz.c
mpz.h
nlr.h nlr: Add implementation using setjmp/longjmp. 2014-04-17 00:19:18 +03:00
nlrsetjmp.c nlr: Add implementation using setjmp/longjmp. 2014-04-17 00:19:18 +03:00
nlrthumb.S
nlrx64.S
nlrx86.S
obj.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
obj.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objarray.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objarray.h
objbool.c
objboundmeth.c
objcell.c
objclosure.c
objcomplex.c
objdict.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objenumerate.c
objexcept.c
objfilter.c
objfloat.c py: Detect ZeroDivisionError properly for floats. 2014-04-13 17:45:30 +01:00
objfun.c py: Simplify objfun/objgenerator connection, no need to call bc_get. 2014-04-17 19:16:11 +01:00
objfun.h objfun: Add local header. 2014-04-17 20:27:00 +03:00
objgenerator.c py: Simplify objfun/objgenerator connection, no need to call bc_get. 2014-04-17 19:16:11 +01:00
objgenerator.h
objgetitemiter.c
objint.c py: Oops, fix int.from_bytes to correctly convert bytes! 2014-04-13 12:40:50 +01:00
objint.h
objint_longlong.c py: Remove useless implementations of NOT_EQUAL in binary_op's. 2014-04-12 00:20:39 +01:00
objint_mpz.c py: Remove useless implementations of NOT_EQUAL in binary_op's. 2014-04-12 00:20:39 +01:00
objlist.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objlist.h objlist: Add support for statically allocated lists. 2014-04-13 07:02:56 +03:00
objmap.c
objmodule.c
objmodule.h
objnamedtuple.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objnone.c
objobject.c
objproperty.c py: Add property object, with basic functionality. 2014-04-13 18:59:45 +01:00
objrange.c py: Make built-in 'range' a class. 2014-04-17 18:18:55 +01:00
objset.c py: Factor out impl of special methods for builtin types into opmethods.c 2014-04-13 11:54:53 +03:00
objslice.c
objstr.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objstr.h py: Add builtin functions bin and oct, and some tests for them. 2014-04-15 22:03:55 +01:00
objtuple.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objtuple.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objtype.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
objzip.c
opmethods.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
parse.c
parse.h
parsehelper.c py: Fix SyntaxError exception: don't have a block name, so pass NULL. 2014-04-13 15:01:28 +01:00
parsehelper.h py: Add traceback info to syntax errors. 2014-04-13 11:56:02 +01:00
parsenum.c
parsenum.h
parsenumbase.c
parsenumbase.h
pfenv.c py: Fix pfenv_print_strn to return correct number of chars printed. 2014-04-17 18:58:09 +01:00
pfenv.h
py-version.sh
py.mk build: Simplify build directory layout by putting all headers in genhdr. 2014-04-17 18:03:27 +01:00
qstr.c build: Simplify build directory layout by putting all headers in genhdr. 2014-04-17 18:03:27 +01:00
qstr.h build: Simplify build directory layout by putting all headers in genhdr. 2014-04-17 18:03:27 +01:00
qstrdefs.h py: Add cmath module, for complex math. Disabled by default. 2014-04-17 17:11:03 +01:00
repl.c
repl.h
runtime.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
runtime.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
runtime0.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
scope.c py: Remove unique_codes from emitglue.c. Replace with pointers. 2014-04-13 11:04:33 +01:00
scope.h py: Remove unique_codes from emitglue.c. Replace with pointers. 2014-04-13 11:04:33 +01:00
sequence.c
showbc.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
smallint.c
smallint.h
stream.c py: the entire `<unistd.h>` shouldn't be needed 2014-04-12 16:45:35 +01:00
stream.h
unicode.c
vm.c py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
vmentrytable.h py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr. 2014-04-17 22:10:53 +01:00
vstr.c