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 62b96147e6 py: mp_call_function_*_protected(): Pass-thru return value if possible. 7 years ago
..
argcheck.c py/argcheck: Remove #if guard around terse error message helper func. 7 years ago
asmarm.c all: Use the name MicroPython consistently in comments 7 years ago
asmarm.h py/emitnative: Clean up asm macro names so they have dest as first arg. 7 years ago
asmbase.c py/asm: Remove need for dummy_data when doing initial assembler passes. 8 years ago
asmbase.h py/asm: Remove need for dummy_data when doing initial assembler passes. 8 years ago
asmthumb.c py/asmthumb: Use existing macro to properly clear the D-cache. 7 years ago
asmthumb.h py/emitnative: Clean up asm macro names so they have dest as first arg. 7 years ago
asmx64.c all: Use the name MicroPython consistently in comments 7 years ago
asmx64.h py/emitnative: Clean up asm macro names so they have dest as first arg. 7 years ago
asmx86.c all: Use the name MicroPython consistently in comments 7 years ago
asmx86.h py/emitnative: Clean up asm macro names so they have dest as first arg. 7 years ago
asmxtensa.c py/asm: Remove need for dummy_data when doing initial assembler passes. 8 years ago
asmxtensa.h py/emitnative: Clean up asm macro names so they have dest as first arg. 7 years ago
bc.c py/bc: Update opcode_format_table to match the bytecode. 7 years ago
bc.h all: Remove inclusion of internal py header files. 7 years ago
bc0.h py: Clean up unary and binary enum list to keep groups together. 7 years ago
binary.c py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. 7 years ago
binary.h py/binary: Change internal bytearray typecode from 0 to 1. 7 years ago
builtin.h py/builtinhelp: Change signature of help text var from pointer to array. 7 years ago
builtinevex.c all: Remove inclusion of internal py header files. 7 years ago
builtinhelp.c py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. 7 years ago
builtinimport.c py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. 7 years ago
compile.c py/compile: Use alloca instead of qstr_build when compiling import name. 7 years ago
compile.h all: Use the name MicroPython consistently in comments 7 years ago
emit.h all: Remove inclusion of internal py header files. 7 years ago
emitbc.c py/emitbc: Remove stray semicolon in outer scope. 7 years ago
emitcommon.c all: Use the name MicroPython consistently in comments 7 years ago
emitglue.c py: Add verbose debug compile-time flag MICROPY_DEBUG_VERBOSE. 7 years ago
emitglue.h all: Use the name MicroPython consistently in comments 7 years ago
emitinlinethumb.c all: Use the name MicroPython consistently in comments 7 years ago
emitinlinextensa.c py/emitinline: Move common code for end of final pass to compiler. 8 years ago
emitnative.c py/emitnative: Clean up asm macro names so they have dest as first arg. 7 years ago
formatfloat.c py/formatfloat: Use standard isinf, isnan funcs instead of custom ones. 7 years ago
formatfloat.h all: Use the name MicroPython consistently in comments 7 years ago
frozenmod.c all: Use the name MicroPython consistently in comments 7 years ago
frozenmod.h all: Use the name MicroPython consistently in comments 7 years ago
gc.c py/gc: In gc_realloc, convert pointer sanity checks to assertions. 7 years ago
gc.h all: Use the name MicroPython consistently in comments 7 years ago
grammar.h all: Use the name MicroPython consistently in comments 7 years ago
lexer.c all: Remove inclusion of internal py header files. 7 years ago
lexer.h all: Use the name MicroPython consistently in comments 7 years ago
makeqstrdata.py py/objtype: Fit qstrs for special methods in byte type. 7 years ago
makeqstrdefs.py py/makeqstrdefs.py: Make script run correctly with Python 2.6. 8 years ago
makeversionhdr.py py/makeversionhdr.py: Update to parse new release line in docs/conf.py. 7 years ago
malloc.c py: Make m_malloc_fail() have void return type, since it doesn't return. 7 years ago
map.c all: Remove inclusion of internal py header files. 7 years ago
misc.h py/misc.h: Add m_new_obj_var_with_finaliser(). 7 years ago
mkenv.mk py/mkenv.mk: Use $(PYTHON) consistently when calling Python tools. 7 years ago
mkrules.mk py/mkenv.mk: Use $(PYTHON) consistently when calling Python tools. 7 years ago
modarray.c all: Use the name MicroPython consistently in comments 7 years ago
modbuiltins.c py/modbuiltins: Slightly simplify code in builtin round(). 7 years ago
modcmath.c py: Change obsolete "///" comment formatting to normal comments. 7 years ago
modcollections.c all: Use the name MicroPython consistently in comments 7 years ago
modgc.c py: Change obsolete "///" comment formatting to normal comments. 7 years ago
modio.c py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. 7 years ago
modmath.c py/modmath: Convert log2 macro into a function. 7 years ago
modmicropython.c all: Remove inclusion of internal py header files. 7 years ago
modstruct.c py/modstruct: Check and prevent buffer-write overflow in struct packing. 7 years ago
modsys.c all: Remove inclusion of internal py header files. 7 years ago
modthread.c py: Add config option to print warnings/errors to stderr. 7 years ago
moduerrno.c py/moduerrno: Make list of errno codes configurable. 8 years ago
mpconfig.h py: Add config option to disable multiple inheritance. 7 years ago
mperrno.h py/mperrno: Allow mperrno.h to be correctly included before other hdrs. 7 years ago
mphal.h all: Use the name MicroPython consistently in comments 7 years ago
mpprint.c py/mpprint: Only check for null string printing when NDEBUG not defined. 7 years ago
mpprint.h all: Use the name MicroPython consistently in comments 7 years ago
mpstate.c all: Use the name MicroPython consistently in comments 7 years ago
mpstate.h extmod/uos_dupterm: Update uos.dupterm() and helper funcs to have index. 7 years ago
mpthread.h all: Unify header guard usage. 7 years ago
mpz.c all: Use the name MicroPython consistently in comments 7 years ago
mpz.h all: Use the name MicroPython consistently in comments 7 years ago
nativeglue.c py/emitnative: Implement floor-division and modulo for viper emitter. 7 years ago
nlr.h all: Use the name MicroPython consistently in comments 7 years ago
nlrsetjmp.c all: Use the name MicroPython consistently in comments 7 years ago
nlrthumb.c all: Remove inclusion of internal py header files. 7 years ago
nlrx64.c all: Remove inclusion of internal py header files. 7 years ago
nlrx86.c all: Remove inclusion of internal py header files. 7 years ago
nlrxtensa.c all: Remove inclusion of internal py header files. 7 years ago
obj.c all: Remove inclusion of internal py header files. 7 years ago
obj.h py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. 7 years ago
objarray.c py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
objarray.h all: Unify header guard usage. 7 years ago
objattrtuple.c all: Use the name MicroPython consistently in comments 7 years ago
objbool.c all: Remove inclusion of internal py header files. 7 years ago
objboundmeth.c all: Use the name MicroPython consistently in comments 7 years ago
objcell.c all: Use the name MicroPython consistently in comments 7 years ago
objclosure.c all: Use the name MicroPython consistently in comments 7 years ago
objcomplex.c all: Remove inclusion of internal py header files. 7 years ago
objdict.c py/objdict: Reuse dict-view key iterator for standard dict iterator. 7 years ago
objenumerate.c all: Use the name MicroPython consistently in comments 7 years ago
objexcept.c all: Remove inclusion of internal py header files. 7 years ago
objexcept.h all: Use the name MicroPython consistently in comments 7 years ago
objfilter.c all: Use the name MicroPython consistently in comments 7 years ago
objfloat.c py/objfloat: Allow float() to parse anything with the buffer protocol. 7 years ago
objfun.c all: Remove inclusion of internal py header files. 7 years ago
objfun.h all: Use the name MicroPython consistently in comments 7 years ago
objgenerator.c py/objgenerator: Remove unreachable code for STOP_ITERATION case. 7 years ago
objgenerator.h all: Use the name MicroPython consistently in comments 7 years ago
objgetitemiter.c all: Remove inclusion of internal py header files. 7 years ago
objint.c all: Remove inclusion of internal py header files. 7 years ago
objint.h py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS. 7 years ago
objint_longlong.c all: Remove inclusion of internal py header files. 7 years ago
objint_mpz.c py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
objlist.c all: Use NULL instead of "" when calling mp_raise exception helpers. 7 years ago
objlist.h all: Use the name MicroPython consistently in comments 7 years ago
objmap.c all: Use the name MicroPython consistently in comments 7 years ago
objmodule.c all: Remove inclusion of internal py header files. 7 years ago
objmodule.h all: Use the name MicroPython consistently in comments 7 years ago
objnamedtuple.c py/objnamedtuple: Allow to reuse namedtuple basic functionality. 7 years ago
objnamedtuple.h py/objnamedtuple: Allow to reuse namedtuple basic functionality. 7 years ago
objnone.c all: Remove inclusion of internal py header files. 7 years ago
objobject.c all: Use the name MicroPython consistently in comments 7 years ago
objpolyiter.c all: Remove inclusion of internal py header files. 7 years ago
objproperty.c all: Remove inclusion of internal py header files. 7 years ago
objrange.c all: Remove inclusion of internal py header files. 7 years ago
objreversed.c all: Remove inclusion of internal py header files. 7 years ago
objset.c py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
objsingleton.c all: Remove inclusion of internal py header files. 7 years ago
objslice.c all: Remove inclusion of internal py header files. 7 years ago
objstr.c py: Annotate func defs with NORETURN when their corresp decls have it. 7 years ago
objstr.h py/objstr: Make mp_obj_new_str_of_type check for existing interned qstr. 7 years ago
objstringio.c all: Remove inclusion of internal py header files. 7 years ago
objstringio.h py/objstringio: If created from immutable object, follow copy on write policy. 8 years ago
objstrunicode.c py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str. 7 years ago
objtuple.c all: Remove inclusion of internal py header files. 7 years ago
objtuple.h all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriate 7 years ago
objtype.c py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
objtype.h all: Use the name MicroPython consistently in comments 7 years ago
objzip.c all: Use the name MicroPython consistently in comments 7 years ago
opmethods.c py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
parse.c py/objstr: Make mp_obj_new_str_of_type check for existing interned qstr. 7 years ago
parse.h all: Use the name MicroPython consistently in comments 7 years ago
parsenum.c py/parsenum: Improve parsing of floating point numbers. 7 years ago
parsenum.h all: Use the name MicroPython consistently in comments 7 years ago
parsenumbase.c all: Use the name MicroPython consistently in comments 7 years ago
parsenumbase.h all: Use the name MicroPython consistently in comments 7 years ago
persistentcode.c py/persistentcode: Bump .mpy version number to version 3. 7 years ago
persistentcode.h py: Factor out persistent-code reader into separate files. 8 years ago
py.mk esp8266: Set DEFPSIZE=1024, MINCACHE=3 for "btree" module. 7 years ago
qstr.c py/qstr: Rewrite find_qstr to make manifest that it returns a valid ptr. 7 years ago
qstr.h py/compile: Use alloca instead of qstr_build when compiling import name. 7 years ago
qstrdefs.h py/qstrdefs: Remove unused qstrs. 7 years ago
reader.c all: Don't include system errno.h when it's not needed. 7 years ago
reader.h py: Allow lexer to raise exceptions during construction. 8 years ago
repl.c all: Use the name MicroPython consistently in comments 7 years ago
repl.h all: Use the name MicroPython consistently in comments 7 years ago
ringbuf.h all: Unify header guard usage. 7 years ago
runtime.c py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
runtime.h py: mp_call_function_*_protected(): Pass-thru return value if possible. 7 years ago
runtime0.h py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN. 7 years ago
runtime_utils.c py: mp_call_function_*_protected(): Pass-thru return value if possible. 7 years ago
scheduler.c py: Add micropython.schedule() function and associated runtime code. 8 years ago
scope.c all: Use the name MicroPython consistently in comments 7 years ago
scope.h all: Use the name MicroPython consistently in comments 7 years ago
sequence.c all: Remove inclusion of internal py header files. 7 years ago
showbc.c py: Clean up unary and binary enum list to keep groups together. 7 years ago
smallint.c all: Use the name MicroPython consistently in comments 7 years ago
smallint.h all: Use the name MicroPython consistently in comments 7 years ago
stackctrl.c py: Annotate func defs with NORETURN when their corresp decls have it. 7 years ago
stackctrl.h all: Use the name MicroPython consistently in comments 7 years ago
stream.c all: Remove inclusion of internal py header files. 7 years ago
stream.h py/objstringio: Fix regression with handling SEEK_SET. 7 years ago
unicode.c py/objstr: Add check for valid UTF-8 when making a str from bytes. 7 years ago
unicode.h py/objstr: Add check for valid UTF-8 when making a str from bytes. 7 years ago
vm.c all: Remove inclusion of internal py header files. 7 years ago
vmentrytable.h py: Clean up unary and binary enum list to keep groups together. 7 years ago
vstr.c py/vstr: Raise a RuntimeError if fixed vstr buffer overflows. 7 years ago
warning.c py: Add config option to print warnings/errors to stderr. 7 years ago