aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-12-12py/objtype: Implement better support for overriding native's __init__.Damien George
2017-12-11py/mpstate.h: Remove obsolete comment about nlr_top being coded in asm.Damien George
2017-12-11py: Extend nan-boxing config to have 47-bit small integers.Damien George
2017-12-11py/objexcept: Use INT_FMT when printing errno value.Damien George
2017-12-11py/runtime: Use the Python stack when building *arg and **kwarg state.Damien George
2017-12-11py: Convert all uses of alloca() to use new scoped allocation API.Damien George
2017-12-11py: Introduce a Python stack for scoped allocation.Damien George
2017-12-11py/runtime: Move mp_exc_recursion_depth to runtime and rename to raise.Damien George
2017-12-10unix/mpconfigport: Disable uio.resource_stream().Paul Sokolovsky
2017-12-10py/mkrules.mk: Add "clean-frozen" target to clean frozen script/modules dir.Paul Sokolovsky
2017-12-09py/map: Allow to trace rehashing operations.Paul Sokolovsky
2017-12-09py/objfun: Factor out macro for initializing codestate.Paul Sokolovsky
2017-12-09py/objfun, vm: Add comments on codestate allocation in stackless mode.Paul Sokolovsky
2017-12-09py/objfun: Factor out macro for decoding codestate size.Paul Sokolovsky
2017-12-09py/gc: In sweep debug output, print pointer as a pointer.Paul Sokolovsky
2017-12-09py/gc: Factor out a macro to trace GC mark operations.Paul Sokolovsky
2017-12-09py/runtime: When tracing unary/binary ops, output op (method) name.Paul Sokolovsky
2017-12-08py/objint_longlong: Check for zero division/modulo.Paul Sokolovsky
2017-12-08py/asmbase: Revert removal of clearing of label offsets for native emit.Damien George
2017-12-08py/{emitbc,asmbase}: Only clear emit labels to -1 when in debug mode.Damien George
2017-12-08py/gc: Add CLEAR_ON_SWEEP option to debug mis-traced objects.Paul Sokolovsky
2017-12-07py/malloc: Allow to use debug logging if !MICROPY_MALLOC_USES_ALLOCATED_SIZE.Paul Sokolovsky
2017-12-07py/malloc: MICROPY_MEM_STATS requires MICROPY_MALLOC_USES_ALLOCATED_SIZE.Paul Sokolovsky
2017-12-07py/mpprint: Fix "%x" vs "%X" regression introduced in previous commit.Paul Sokolovsky
2017-12-07py/mpprint: Support "%lx" format on 64-bit systems.Paul Sokolovsky
2017-12-07py/mpprint: Make "%p" format work properly on 64-bit systems.Paul Sokolovsky
2017-12-05py/modbuiltins: Use standard arg-parsing helper func for builtin print.Damien George
2017-12-05py: mp_call_function_*_protected(): Pass-thru return value if possible.Paul Sokolovsky
2017-12-04py/misc.h: Add m_new_obj_var_with_finaliser().Paul Sokolovsky
2017-11-30py/objgenerator: Remove unreachable code for STOP_ITERATION case.Damien George
2017-11-29py/gc: In gc_realloc, convert pointer sanity checks to assertions.Damien George
2017-11-29py/qstr: Rewrite find_qstr to make manifest that it returns a valid ptr.Damien George
2017-11-29py: Annotate func defs with NORETURN when their corresp decls have it.Damien George
2017-11-27py/objdict: Reuse dict-view key iterator for standard dict iterator.Damien George
2017-11-27py/parsenum: Improve parsing of floating point numbers.Damien George
2017-11-24py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN.Damien George
2017-11-24py/opmethods: Include the correct header for binary op enums.Damien George
2017-11-24py/runtime: Simplify handling of containment binary operator.Damien George
2017-11-22py/modbuiltins: Slightly simplify code in builtin round().Damien George
2017-11-21py/objfloat: Allow float() to parse anything with the buffer protocol.Damien George
2017-11-20py/objnamedtuple: Allow to reuse namedtuple basic functionality.Paul Sokolovsky
2017-11-20py: Add config option to disable multiple inheritance.Damien George
2017-11-16py/objstr: When constructing str from bytes, check for existing qstr.Damien George
2017-11-16py/objstr: Make mp_obj_new_str_of_type check for existing interned qstr.Damien George
2017-11-16py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str.Damien George
2017-11-15py/mkenv.mk: Use $(PYTHON) consistently when calling Python tools.Christopher Arndt
2017-11-15py/emitnative: Clean up asm macro names so they have dest as first arg.Damien George
2017-11-12py/objnamedtuple: Add _asdict function if OrderedDict is supportedstijn
2017-11-11py/objtype: mp_obj_new_type: Name base types related vars more clearly.Paul Sokolovsky
2017-11-08py/mpconfig: Introduce reusable MP_HTOBE32(), etc. macros.Paul Sokolovsky