.. |
argcheck.c
|
py: Add %q format support to mp_[v]printf, and use it.
|
10 years ago |
asmarm.c
|
py: Implement native multiply operation in viper emitter.
|
10 years ago |
asmarm.h
|
py: Implement native multiply operation in viper emitter.
|
10 years ago |
asmthumb.c
|
py: Implement full func arg passing for native emitter.
|
10 years ago |
asmthumb.h
|
py: Implement full func arg passing for native emitter.
|
10 years ago |
asmx64.c
|
py: Implement native multiply operation in viper emitter.
|
10 years ago |
asmx64.h
|
py: Implement native multiply operation in viper emitter.
|
10 years ago |
asmx86.c
|
py: Implement native multiply operation in viper emitter.
|
10 years ago |
asmx86.h
|
py: Implement native multiply operation in viper emitter.
|
10 years ago |
bc.c
|
py: Add %q format support to mp_[v]printf, and use it.
|
10 years ago |
bc.h
|
vm: Initial support for calling bytecode functions w/o C stack ("stackless").
|
10 years ago |
bc0.h
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
binary.c
|
py/binary: Make return type of mp_binary_get_size size_t instead of int.
|
10 years ago |
binary.h
|
py/binary: Make return type of mp_binary_get_size size_t instead of int.
|
10 years ago |
builtin.h
|
modstruct: Rename module to "ustruct", to allow full Python-level impl.
|
10 years ago |
builtinevex.c
|
py: Check for valid file when creating lexer for execfile.
|
10 years ago |
builtinimport.c
|
builtinimport: Fix running package submodule with -m.
|
9 years ago |
compile.c
|
py/compile: Give more precise line number for compile errors.
|
9 years ago |
compile.h
|
py: Protect mp_parse and mp_compile with nlr push/pop block.
|
10 years ago |
emit.h
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
emitbc.c
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
emitcommon.c
|
py, compiler: Refactor load/store/delete_id logic to reduce code size.
|
10 years ago |
emitcpy.c
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
emitglue.c
|
py: Implement full func arg passing for native emitter.
|
10 years ago |
emitglue.h
|
py: Implement full func arg passing for native emitter.
|
10 years ago |
emitinlinethumb.c
|
py/inlinethumb: Support for core floating point instructions.
|
10 years ago |
emitnative.c
|
py: For viper compile errors, add traceback with function and filename.
|
9 years ago |
formatfloat.c
|
py: Implement mp_format_float for doubles and use where appropriate
|
10 years ago |
formatfloat.h
|
py: Implement mp_format_float for doubles and use where appropriate
|
10 years ago |
frozenmod.c
|
frozenmod: Include header with function prototypes.
|
10 years ago |
frozenmod.h
|
py: Implement very simple frozen modules support.
|
10 years ago |
gc.c
|
py: Improve allocation policy of qstr data.
|
9 years ago |
gc.h
|
py: Improve allocation policy of qstr data.
|
9 years ago |
grammar.h
|
py/parse: Fix handling of empty input so it raises an exception.
|
9 years ago |
lexer.c
|
py/lexer: Raise SyntaxError when str hex escape sequence is malformed.
|
9 years ago |
lexer.h
|
unix: Allow to cat a script into stdin from the command line.
|
10 years ago |
lexerstr.c
|
py: Use m_{new,renew,del} consistently.
|
10 years ago |
lexerunix.c
|
unix: Allow to cat a script into stdin from the command line.
|
10 years ago |
makeqstrdata.py
|
makeqstrdata.py: Typo fix in comment.
|
9 years ago |
makeversionhdr.py
|
py: Get makeqstrdata.py and makeversionhdr.py running under Python 2.6.
|
10 years ago |
malloc.c
|
py: Improve allocation policy of qstr data.
|
9 years ago |
map.c
|
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
|
10 years ago |
misc.h
|
py: Improve allocation policy of qstr data.
|
9 years ago |
mkenv.mk
|
py, mk: Revert change where build variables set with ?=.
|
11 years ago |
mkrules.mk
|
mkrules.mk: Add comment why dependency parsing regex was tweaked.
|
10 years ago |
modarray.c
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
modbuiltins.c
|
modbuiltins: Implement round() to precision.
|
9 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: Implement second arg for math.log (optional value for base).
|
10 years ago |
modmicropython.c
|
py: Convert occurrences of non-debug printf to mp_printf.
|
10 years ago |
modstruct.c
|
modstruct: Raise NotImplementedError for unsupported repeat specification.
|
9 years ago |
modsys.c
|
py: Replace py-version.sh with makeversionhdr.py, written in Python.
|
10 years ago |
mpconfig.h
|
py: Disable REPL EMACS key bindings by default.
|
9 years ago |
mpprint.c
|
py: Remove unnecessary extra handling of padding of nan/inf.
|
10 years ago |
mpprint.h
|
py: Remove unnecessary extra handling of padding of nan/inf.
|
10 years ago |
mpstate.c
|
py: Put all global state together in state structures.
|
10 years ago |
mpstate.h
|
py: Improve allocation policy of qstr data.
|
9 years ago |
mpz.c
|
py: Fix handling of negative numbers in struct.pack of q/Q.
|
10 years ago |
mpz.h
|
py: Support conversion of bignum to bytes.
|
10 years ago |
nativeglue.c
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
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: Add mp_obj_get_int_truncated and use it where appropriate.
|
10 years ago |
obj.h
|
py: Add TimeoutError exception subclassed from OSError.
|
9 years ago |
objarray.c
|
py: Small code space optimisations for memoryview slice assigment.
|
9 years ago |
objattrtuple.c
|
py: Fix attrtuple array length in print and creation.
|
10 years ago |
objbool.c
|
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
|
10 years ago |
objboundmeth.c
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objcell.c
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objclosure.c
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objcomplex.c
|
py: Implement mp_format_float for doubles and use where appropriate
|
10 years ago |
objdict.c
|
py: Add %q format support to mp_[v]printf, and use it.
|
10 years ago |
objenumerate.c
|
py: Add MICROPY_PY_BUILTINS_ENUMERATE, disable for minimal ports.
|
10 years ago |
objexcept.c
|
py: Improve allocation policy of qstr data.
|
9 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: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
|
10 years ago |
objfun.c
|
py: Allow viper functions to take up to 4 arguments.
|
9 years ago |
objfun.h
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
objgenerator.c
|
objgenerator: Can optimize StopIteration to STOP_ITERATION only if arg is None.
|
10 years ago |
objgenerator.h
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
objgetitemiter.c
|
py: Some trivial cosmetic changes, for code style consistency.
|
10 years ago |
objint.c
|
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
|
10 years ago |
objint.h
|
py: Support conversion of bignum to bytes.
|
10 years ago |
objint_longlong.c
|
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
|
10 years ago |
objint_mpz.c
|
py: Implement divmod for mpz bignum.
|
10 years ago |
objlist.c
|
py/objlist: Make list += accept all arguments and add test.
|
9 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
|
modstruct: Rename module to "ustruct", to allow full Python-level impl.
|
10 years ago |
objmodule.h
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
objnamedtuple.c
|
py: Add attrtuple object, for space-efficient tuples with attr access.
|
10 years ago |
objnone.c
|
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
|
10 years ago |
objobject.c
|
py/objobject: Don't make locals_dict if there's nothing to go in it.
|
10 years ago |
objproperty.c
|
py, unix: Allow to compile with -Wunused-parameter.
|
10 years ago |
objrange.c
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objreversed.c
|
py: Add MICROPY_PY_BUILTINS_REVERSED, disable for minimal ports.
|
10 years ago |
objset.c
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objsingleton.c
|
objsingleton: New home for Ellipsis and NotImplemented.
|
10 years ago |
objslice.c
|
objsingleton: New home for Ellipsis and NotImplemented.
|
10 years ago |
objstr.c
|
py: Prevent many extra vstr allocations.
|
9 years ago |
objstr.h
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objstringio.c
|
py: Overhaul and simplify printf/pfenv mechanism.
|
10 years ago |
objstrunicode.c
|
py: Clean up declarations of str type/funcs that are also in unicode.
|
10 years ago |
objtuple.c
|
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
|
10 years ago |
objtuple.h
|
py: Add attrtuple object, for space-efficient tuples with attr access.
|
10 years ago |
objtype.c
|
py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
|
10 years ago |
objtype.h
|
py: Check that arg to object.__new__ is a user-defined type.
|
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/parse: Fix handling of empty input so it raises an exception.
|
9 years ago |
parse.h
|
py: Expose compile.c:list_get as mp_parse_node_extract_list.
|
10 years ago |
parsenum.c
|
py: Clarify comment in parsenum.c about ValueError vs SyntaxError.
|
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 |
py.mk
|
py: Rebuild port if mpconfigport.mk changed (if any).
|
10 years ago |
qstr.c
|
py: Make qstr hash size configurable, defaults to 2 bytes.
|
9 years ago |
qstr.h
|
py: Adjust some spaces in code style/format, purely for consistency.
|
10 years ago |
qstrdefs.h
|
py: Make qstr hash size configurable, defaults to 2 bytes.
|
9 years ago |
repl.c
|
py/repl: Don't look inside strings for unmatched brackets/quotes.
|
9 years ago |
repl.h
|
py, readline: Add tab autocompletion for REPL.
|
10 years ago |
runtime.c
|
runtime: Improve mp_import_name() debug logging.
|
10 years ago |
runtime.h
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
runtime0.h
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
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: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
smallint.c
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
smallint.h
|
py: Allow configurable object representation, with 2 different options.
|
10 years ago |
stackctrl.c
|
vm: Support strict stackless mode, with proper exception reporting.
|
10 years ago |
stackctrl.h
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
stream.c
|
py: Add mp_obj_get_int_truncated and use it where appropriate.
|
10 years ago |
stream.h
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
unicode.c
|
py: Minor improvement to unichar_isxdigit
|
10 years ago |
unicode.h
|
py: Move to guarded includes, everywhere in py/ core.
|
10 years ago |
vm.c
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
vmentrytable.h
|
py: Remove mp_load_const_bytes and instead load precreated bytes object.
|
10 years ago |
vstr.c
|
py: Prevent many extra vstr allocations.
|
9 years ago |
warning.c
|
py: Convert occurrences of non-debug printf to mp_printf.
|
10 years ago |