micropython/py
Paul Sokolovsky f0a8f21190 vm: Implement stackless for CALL_FUNCTION_VAR_KW & CALL_METHOD_VAR_KW. 2015-04-03 00:03:07 +03:00
..
argcheck.c
asmarm.c
asmarm.h
asmthumb.c py: In inline assembler, fix branch out-of-range error reporting. 2015-03-02 17:51:32 +00:00
asmthumb.h py: For inline assembler, add bcc_n and bcc_w ops. 2015-03-02 14:29:52 +00:00
asmx64.c py/asm*.c: Typo fixes in comments. 2015-02-14 02:20:35 +08:00
asmx64.h
asmx86.c py/asm*.c: Typo fixes in comments. 2015-02-14 02:20:35 +08:00
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 py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
binary.c objarray: Support array('O'), array of objects, as extension to CPython. 2015-03-05 22:58:31 +02:00
binary.h
builtin.h py: Add setattr builtin. 2015-02-14 23:35:00 +00:00
builtinevex.c py: Check for valid file when creating lexer for execfile. 2015-02-15 00:02:27 +00:00
builtinimport.c builtinimport: Revamp&refactor handling of relative imports. 2015-02-16 12:11:34 +02:00
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 py: In inline assembler, reset labels on code-size pass. 2015-03-03 17:34:49 +00:00
emitnative.c py: Fix emitnative's creation of small ints so it uses the macro. 2015-04-01 00:12:43 +01:00
formatfloat.c
formatfloat.h
frozenmod.c
frozenmod.h
gc.c
gc.h
grammar.h py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
lexer.c py: Allow to compile with extra warnings (sign-compare, unused-param). 2015-03-19 00:25:33 +00:00
lexer.h py: Allow to compile with extra warnings (sign-compare, unused-param). 2015-03-19 00:25:33 +00:00
lexerstr.c py: Use m_{new,renew,del} consistently. 2015-02-27 09:34:51 +00:00
lexerunix.c
makeqstrdata.py makeqstrdata.py: Add support for strings with backslash escapes. 2015-04-02 01:10:11 +03:00
malloc.c py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API. 2015-03-03 21:23:13 +00:00
map.c py: Clarify API for map/set lookup when removing&adding at once. 2015-03-20 17:41:37 +00:00
misc.h py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API. 2015-03-03 21:23:13 +00:00
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 py: Use TextIOWrapper only if PY_IO_FILEIO def'd; cast size_t for print. 2015-02-15 13:17:11 +00:00
modmath.c py: Make math special functions configurable and disabled by default. 2015-02-22 14:48:18 +00:00
modmicropython.c py: Use TextIOWrapper only if PY_IO_FILEIO def'd; cast size_t for print. 2015-02-15 13:17:11 +00:00
modstruct.c py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
modsys.c
mpconfig.h vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 2015-04-03 00:03:07 +03:00
mpstate.c
mpstate.h
mpz.c py: Make some mpz functions static and remove unused ones. 2015-03-12 22:48:45 +00:00
mpz.h py: Make some mpz functions static and remove unused ones. 2015-03-12 22:48:45 +00:00
nativeglue.c py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
nlr.h py: Guard against redef of nlr_push with DEBUG + MICROPY_NLR_SETJMP. 2015-03-03 14:34:40 +00:00
nlrsetjmp.c
nlrthumb.S
nlrx64.S
nlrx86.S
nlrxtensa.S
obj.c py: Fix mp_obj_print() to work when Python streams are not used. 2015-02-17 00:32:18 +02:00
obj.h py: Cast mp_obj_t to concrete types explicitly. 2015-03-25 09:25:41 +02:00
objarray.c py: Allow to compile with extra warnings (sign-compare, unused-param). 2015-03-19 00:25:33 +00:00
objbool.c
objboundmeth.c py: Allow retrieving a function's __name__. 2015-03-20 23:13:32 +00:00
objcell.c
objclosure.c
objcomplex.c py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
objdict.c objdict: Cast mp_obj_t to concrete types explicitly. 2015-03-26 12:28:56 +02:00
objenumerate.c
objexcept.c py: Use m_{new,renew,del} consistently. 2015-02-27 09:34:51 +00:00
objexcept.h py: Fix adding of traceback so that it appends to existing info. 2015-02-27 00:36:39 +00:00
objfilter.c
objfloat.c py, extmod: Remove include of unnecessary system headers. 2015-03-14 23:11:25 +00:00
objfun.c vm: If there's no heap to call function in stackless manner, call via C stack. 2015-04-03 00:03:07 +03:00
objfun.h
objgenerator.c py: Allow retrieving a function's __name__. 2015-03-20 23:13:32 +00:00
objgenerator.h
objgetitemiter.c
objint.c py: Fix builtin abs so it works for bools and bignum. 2015-03-14 22:07:30 +00:00
objint.h py: Fix builtin abs so it works for bools and bignum. 2015-03-14 22:07:30 +00:00
objint_longlong.c py: Fix builtin abs so it works for bools and bignum. 2015-03-14 22:07:30 +00:00
objint_mpz.c py: Fix builtin abs so it works for bools and bignum. 2015-03-14 22:07:30 +00:00
objlist.c py: Cast mp_obj_t to concrete types explicitly. 2015-03-25 09:25:41 +02:00
objlist.h py: Fix adding of traceback so that it appends to existing info. 2015-02-27 00:36:39 +00:00
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 py: Add support for start/stop/step attributes of builtin range object. 2015-03-11 20:02:06 +00:00
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 objstr: Expose mp_obj_str_split() for reuse in other modules. 2015-03-23 22:43:37 +02:00
objstr.h objstr: Expose mp_obj_str_split() for reuse in other modules. 2015-03-23 22:43:37 +02:00
objstringio.c
objstrunicode.c py: Allow to compile with extra warnings (sign-compare, unused-param). 2015-03-19 00:25:33 +00:00
objtuple.c py: Use m_{new,renew,del} consistently. 2015-02-27 09:34:51 +00:00
objtuple.h
objtype.c objtype: Add special unary methods __pos__, __neg__, __invert__. 2015-03-31 01:05:03 +03:00
objtype.h
objzip.c
opmethods.c
parse.c py: Update parse.c&mpconfig.h to reflect rename of mp_lexer_show_token. 2015-02-23 21:36:05 +00:00
parse.h py: Expose compile.c:list_get as mp_parse_node_extract_list. 2015-02-13 02:29:46 +00:00
parsenum.c py: Fix printing of error message when parsing malformed integer. 2015-03-16 10:42:50 +00:00
parsenum.h py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
parsenumbase.c py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
parsenumbase.h
pfenv.c py: Remove unnecessary and unused sgn argument from pfenv_print_mp_int. 2015-03-14 22:32:40 +00:00
pfenv.h py: Remove unnecessary and unused sgn argument from pfenv_print_mp_int. 2015-03-14 22:32:40 +00:00
pfenv_printf.c py: In pfenv_vprintf, adjust type from mp_uint_t to unsigned int. 2015-03-14 23:09:57 +00:00
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 py: Add option to micropython.qstr_info() to dump actual qstrs. 2015-02-10 11:02:28 +00:00
qstr.h py: Add option to micropython.qstr_info() to dump actual qstrs. 2015-02-10 11:02:28 +00:00
qstrdefs.h objtype: Add special unary methods __pos__, __neg__, __invert__. 2015-03-31 01:05:03 +03:00
repl.c
repl.h
runtime.c runtime: Split mp_call_prepare_args_n_kw_var() from mp_call_method_n_kw_var(). 2015-04-03 00:03:07 +03:00
runtime.h runtime: Split mp_call_prepare_args_n_kw_var() from mp_call_method_n_kw_var(). 2015-04-03 00:03:07 +03:00
runtime0.h py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
scope.c
scope.h
sequence.c
showbc.c py: Implement DELETE_GLOBAL in showbc.c. 2015-03-20 17:12:09 +00:00
smallint.c
smallint.h
stackctrl.c stackctrl: Encode "recursion depth exceeded" message as qstr. 2015-02-15 22:41:14 +03:00
stackctrl.h
stream.c
stream.h
unicode.c
unicode.h
vm.c vm: Implement stackless for CALL_FUNCTION_VAR_KW & CALL_METHOD_VAR_KW. 2015-04-03 00:03:07 +03:00
vmentrytable.h py: Parse big-int/float/imag constants directly in parser. 2015-02-08 01:57:40 +00:00
vstr.c
warning.c