aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-12-20py/nlr: Factor out common NLR code to generic functions.Damien George
2017-12-19py/modio: Use correct config macro to enable resource_stream function.Damien George
2017-12-19py/mpz: Apply a small code-size optimisation.Damien George
2017-12-19py/mpz: Fix pow3 function so it handles the case when 3rd arg is 1.Damien George
2017-12-19py/objset: Remove unneeded check from set_equal.Damien George
2017-12-19py/map: Don't include ordered-dict mutating code when not needed.Damien George
2017-12-19py/runtime: Remove unnecessary break statements from switch.Damien George
2017-12-15py/objgenerator: Allow to pend an exception for next execution.Paul Sokolovsky
2017-12-15py/emitglue: Change type of bit-field to explicitly unsigned mp_uint_t.Damien George
2017-12-13py/builtinimport: Call __init__ for modules imported via a weak link.Damien George
2017-12-12py/objtype: Refactor object's handling of __new__ to not create 2 objs.Damien George
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