micropython/py
Damien George fe8fb9165c py: remove depedence on strcat and stpcpy.
This fixes Issue #29, and means the core is no longer dependent on
string functions, except strlen.
2014-01-02 16:36:09 +00:00
..
asmthumb.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
asmthumb.h Support for for-loop in native thumb. 2013-11-03 14:25:43 +00:00
asmx64.c On OpenBSD MAP_ANONYMOUS is called MAP_ANON. 2014-01-01 23:16:27 +00:00
asmx64.h Typo fix in comment. 2013-12-30 21:03:41 +02:00
bc.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
bc0.h py: make closures work. 2013-12-30 22:32:17 +00:00
builtin.c py: Add framework for built-in "type()" function. 2014-01-02 16:01:17 +00:00
builtin.h py: Add framework for built-in "type()" function. 2014-01-02 16:01:17 +00:00
compile.c py: remove depedence on strcat and stpcpy. 2014-01-02 16:36:09 +00:00
compile.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
emit.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
emitbc.c py: make closures work. 2013-12-30 22:32:17 +00:00
emitcommon.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
emitcpy.c Add unix-cpy, used to test Micro Python byte code against CPython. 2013-12-29 18:01:01 +00:00
emitinlinethumb.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
emitnative.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
emitpass1.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
gc.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
gc.h Fix func decls with no arguments: () -> (void). 2013-10-23 20:20:17 +01:00
grammar.h py: fix bug with doc string not recognised after first newline of file. 2013-12-12 15:24:38 +00:00
lexer.c Put unicode functions in unicode.c, and tidy their names. 2013-12-30 18:23:50 +00:00
lexer.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
lexerunix.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
lexerunix.h Add unix-cpy, used to test Micro Python byte code against CPython. 2013-12-29 18:01:01 +00:00
malloc.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
map.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
map.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
misc.h Put unicode functions in unicode.c, and tidy their names. 2013-12-30 18:23:50 +00:00
nlr.h Fix func decls with no arguments: () -> (void). 2013-10-23 20:20:17 +01:00
nlrthumb.S Make "unix" target be crossplatform and support x86, x64, ARM hosts. 2013-12-30 03:38:32 +02:00
nlrx64.S Make "unix" target be crossplatform and support x86, x64, ARM hosts. 2013-12-30 03:38:32 +02:00
nlrx86.S Make "unix" target be crossplatform and support x86, x64, ARM hosts. 2013-12-30 03:38:32 +02:00
obj.c py: add int() and float() built-ins, partially implemented. 2014-01-01 17:03:35 +00:00
obj.h py: change declaration of mp_map_t in obj.h (for issue #24). 2014-01-01 21:27:43 +00:00
objbool.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objboundmeth.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objcell.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objclass.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
objclosure.c py: make closures work. 2013-12-30 22:32:17 +00:00
objcomplex.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objdict.c py: add dict length function, and fix rt_store_set. 2013-12-29 22:32:51 +00:00
objexcept.c py: implement some basic exception matching. 2013-12-29 17:17:43 +00:00
objfloat.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objfun.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
objgenerator.c py: make closures work. 2013-12-30 22:32:17 +00:00
objinstance.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objlist.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
objnone.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objrange.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objset.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objstr.c py: remove depedence on strcat and stpcpy. 2014-01-02 16:36:09 +00:00
objtuple.c Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
objtype.c py: Add framework for built-in "type()" function. 2014-01-02 16:01:17 +00:00
parse.c Put unicode functions in unicode.c, and tidy their names. 2013-12-30 18:23:50 +00:00
parse.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
qstr.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00
repl.c Put unicode functions in unicode.c, and tidy their names. 2013-12-30 18:23:50 +00:00
repl.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
runtime.c py: Add framework for built-in "type()" function. 2014-01-02 16:01:17 +00:00
runtime.h Change object representation from 1 big union to individual structs. 2013-12-21 18:17:45 +00:00
runtime0.h py: make closures work. 2013-12-30 22:32:17 +00:00
scope.c py: make closures work. 2013-12-30 22:32:17 +00:00
scope.h py: make closures work. 2013-12-30 22:32:17 +00:00
showbc.c py: make closures work. 2013-12-30 22:32:17 +00:00
unicode.c Put unicode functions in unicode.c, and tidy their names. 2013-12-30 18:23:50 +00:00
vm.c py: make closures work. 2013-12-30 22:32:17 +00:00
vstr.c Change memory allocation API to require size for free and realloc. 2013-12-29 19:33:23 +00:00