You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Paul Sokolovsky 2039757b85 vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 10 years ago
..
argcheck.c py, unix, stmhal: Allow to compile with -Wshadow. 10 years ago
asmarm.c py: Allocate memory for assembled code at start of PASS_EMIT. 10 years ago
asmarm.h py: Add guarded includes for asm-based headers. 10 years ago
asmthumb.c py: In inline assembler, fix branch out-of-range error reporting. 10 years ago
asmthumb.h py: For inline assembler, add bcc_n and bcc_w ops. 10 years ago
asmx64.c py/asm*.c: Typo fixes in comments. 10 years ago
asmx64.h py: Allow asmx64 to compile with -Wsign-compare. 10 years ago
asmx86.c py/asm*.c: Typo fixes in comments. 10 years ago
asmx86.h py: Add guarded includes for asm-based headers. 10 years ago
bc.c vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 10 years ago
bc.h vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 10 years ago
bc0.h py: Parse big-int/float/imag constants directly in parser. 10 years ago
binary.c objarray: Support array('O'), array of objects, as extension to CPython. 10 years ago
binary.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
builtin.h py: Add setattr builtin. 10 years ago
builtinevex.c py: Check for valid file when creating lexer for execfile. 10 years ago
builtinimport.c builtinimport: Revamp&refactor handling of relative imports. 10 years ago
compile.c py, compiler: When just bytecode, make explicit calls instead of table. 10 years ago
compile.h py: Protect mp_parse and mp_compile with nlr push/pop block. 10 years ago
emit.h py, compiler: When just bytecode, make explicit calls instead of table. 10 years ago
emitbc.c py, compiler: When just bytecode, make explicit calls instead of table. 10 years ago
emitcommon.c py, compiler: Refactor load/store/delete_id logic to reduce code size. 10 years ago
emitcpy.c py, compiler: Remove emit_pass1 code, using emit_bc to do its job. 10 years ago
emitglue.c py: Don't use anonymous unions, name them instead. 10 years ago
emitglue.h py: Don't use anonymous unions, name them instead. 10 years ago
emitinlinethumb.c py: In inline assembler, reset labels on code-size pass. 10 years ago
emitnative.c py: Fix emitnative's creation of small ints so it uses the macro. 10 years ago
formatfloat.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
formatfloat.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
frozenmod.c py: Implement very simple frozen modules support. 10 years ago
frozenmod.h py: Implement very simple frozen modules support. 10 years ago
gc.c py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t. 10 years ago
gc.h py: Put all global state together in state structures. 10 years ago
grammar.h py: Parse big-int/float/imag constants directly in parser. 10 years ago
lexer.c py: Allow to compile with extra warnings (sign-compare, unused-param). 10 years ago
lexer.h py: Allow to compile with extra warnings (sign-compare, unused-param). 10 years ago
lexerstr.c py: Use m_{new,renew,del} consistently. 10 years ago
lexerunix.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
makeqstrdata.py makeqstrdata.py: Add support for strings with backslash escapes. 10 years ago
malloc.c py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API. 10 years ago
map.c py: Clarify API for map/set lookup when removing&adding at once. 10 years ago
misc.h py: Add MICROPY_MALLOC_USES_ALLOCATED_SIZE to allow simpler malloc API. 10 years ago
mkenv.mk py, mk: Revert change where build variables set with ?=. 11 years ago
mkrules.mk py: Fix order-only dependencies in mkrules.mk and py.mk. 10 years ago
modarray.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
modbuiltins.c modbuiltins: round(): Accept second arg, and at least support it to be 0. 10 years ago
modcmath.c py: Fix cmath.log10; fix printing of complex number with negative imag. 10 years ago
modcollections.c py: Implement core of OrderedDict type. 10 years ago
modgc.c py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t. 10 years ago
modio.c py: Use TextIOWrapper only if PY_IO_FILEIO def'd; cast size_t for print. 10 years ago
modmath.c py: Make math special functions configurable and disabled by default. 10 years ago
modmicropython.c py: Use TextIOWrapper only if PY_IO_FILEIO def'd; cast size_t for print. 10 years ago
modstruct.c py: Parse big-int/float/imag constants directly in parser. 10 years ago
modsys.c py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t. 10 years ago
mpconfig.h vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 10 years ago
mpstate.c py: Put all global state together in state structures. 10 years ago
mpstate.h py: Put mp_sys_path, mp_sys_argv and gc_collected in mp_state_ctx_t. 10 years ago
mpz.c py: Make some mpz functions static and remove unused ones. 10 years ago
mpz.h py: Make some mpz functions static and remove unused ones. 10 years ago
nativeglue.c py: Parse big-int/float/imag constants directly in parser. 10 years ago
nlr.h py: Guard against redef of nlr_push with DEBUG + MICROPY_NLR_SETJMP. 10 years ago
nlrsetjmp.c py: Put all global state together in state structures. 10 years ago
nlrthumb.S py: Put all global state together in state structures. 10 years ago
nlrx64.S py: Fix nlr mp_state_ctx symbol error for Mac. 10 years ago
nlrx86.S py: Put all global state together in state structures. 10 years ago
nlrxtensa.S py: Put all global state together in state structures. 10 years ago
obj.c py: Fix mp_obj_print() to work when Python streams are not used. 10 years ago
obj.h py: Cast mp_obj_t to concrete types explicitly. 10 years ago
objarray.c py: Allow to compile with extra warnings (sign-compare, unused-param). 10 years ago
objbool.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objboundmeth.c py: Allow retrieving a function's __name__. 10 years ago
objcell.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objclosure.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objcomplex.c py: Parse big-int/float/imag constants directly in parser. 10 years ago
objdict.c objdict: Cast mp_obj_t to concrete types explicitly. 10 years ago
objenumerate.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objexcept.c py: Use m_{new,renew,del} consistently. 10 years ago
objexcept.h py: Fix adding of traceback so that it appends to existing info. 10 years ago
objfilter.c py: Use mp_arg_check_num in some _make_new functions. 10 years ago
objfloat.c py, extmod: Remove include of unnecessary system headers. 10 years ago
objfun.c vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 10 years ago
objfun.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objgenerator.c py: Allow retrieving a function's __name__. 10 years ago
objgenerator.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objgetitemiter.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
objint.c py: Fix builtin abs so it works for bools and bignum. 10 years ago
objint.h py: Fix builtin abs so it works for bools and bignum. 10 years ago
objint_longlong.c py: Fix builtin abs so it works for bools and bignum. 10 years ago
objint_mpz.c py: Fix builtin abs so it works for bools and bignum. 10 years ago
objlist.c py: Cast mp_obj_t to concrete types explicitly. 10 years ago
objlist.h py: Fix adding of traceback so that it appends to existing info. 10 years ago
objmap.c py: Use mp_arg_check_num in some _make_new functions. 10 years ago
objmodule.c py: Implement core of OrderedDict type. 10 years ago
objmodule.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objnamedtuple.c objnamedtuple: Accept field list as a string. 10 years ago
objnone.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objobject.c py: Use mp_arg_check_num in some _make_new functions. 10 years ago
objproperty.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objrange.c py: Add support for start/stop/step attributes of builtin range object. 10 years ago
objreversed.c py: Implement __reversed__ slot. 10 years ago
objset.c py: Clarify API for map/set lookup when removing&adding at once. 10 years ago
objslice.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
objstr.c objstr: Expose mp_obj_str_split() for reuse in other modules. 10 years ago
objstr.h objstr: Expose mp_obj_str_split() for reuse in other modules. 10 years ago
objstringio.c py: Prevent segfault for operations on closed StringIO. 10 years ago
objstrunicode.c py: Allow to compile with extra warnings (sign-compare, unused-param). 10 years ago
objtuple.c py: Use m_{new,renew,del} consistently. 10 years ago
objtuple.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
objtype.c objtype: Add special unary methods __pos__, __neg__, __invert__. 10 years ago
objtype.h py: Add option to cache map lookup results in bytecode. 10 years ago
objzip.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
opmethods.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
parse.c py: Update parse.c&mpconfig.h to reflect rename of mp_lexer_show_token. 10 years ago
parse.h py: Expose compile.c:list_get as mp_parse_node_extract_list. 10 years ago
parsenum.c py: Fix printing of error message when parsing malformed integer. 10 years ago
parsenum.h py: Parse big-int/float/imag constants directly in parser. 10 years ago
parsenumbase.c py: Parse big-int/float/imag constants directly in parser. 10 years ago
parsenumbase.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
pfenv.c py: Remove unnecessary and unused sgn argument from pfenv_print_mp_int. 10 years ago
pfenv.h py: Remove unnecessary and unused sgn argument from pfenv_print_mp_int. 10 years ago
pfenv_printf.c py: In pfenv_vprintf, adjust type from mp_uint_t to unsigned int. 10 years ago
py-version.sh - Let the build environment decide about the toolchain to be used, in case 11 years ago
py.mk py, compiler: Remove emit_pass1 code, using emit_bc to do its job. 10 years ago
qstr.c py: Add option to micropython.qstr_info() to dump actual qstrs. 10 years ago
qstr.h py: Add option to micropython.qstr_info() to dump actual qstrs. 10 years ago
qstrdefs.h objtype: Add special unary methods __pos__, __neg__, __invert__. 10 years ago
repl.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
repl.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
runtime.c py: Combine duplicated code that converts members from a lookup. 10 years ago
runtime.h py: Combine duplicated code that converts members from a lookup. 10 years ago
runtime0.h py: Parse big-int/float/imag constants directly in parser. 10 years ago
scope.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
scope.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
sequence.c py, unix: Allow to compile with -Wunused-parameter. 10 years ago
showbc.c py: Implement DELETE_GLOBAL in showbc.c. 10 years ago
smallint.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
smallint.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
stackctrl.c stackctrl: Encode "recursion depth exceeded" message as qstr. 10 years ago
stackctrl.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
stream.c py: Change vstr so that it doesn't null terminate buffer by default. 10 years ago
stream.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
unicode.c py: Move to guarded includes, everywhere in py/ core. 10 years ago
unicode.h py: Move to guarded includes, everywhere in py/ core. 10 years ago
vm.c vm: Initial support for calling bytecode functions w/o C stack ("stackless"). 10 years ago
vmentrytable.h py: Parse big-int/float/imag constants directly in parser. 10 years ago
vstr.c py: Change vstr_null_terminate -> vstr_null_terminated_str, returns str. 10 years ago
warning.c py: Can compile with -Wmissing-declarations and -Wmissing-prototypes. 10 years ago