summaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-04-25py/mpz: In mpn_sub, use existing function to remove trailing zeros.Damien George
2017-04-25py/mpz: Strip trailing zeros from mpz value when set from bytes.Damien George
2017-04-22py: Add LOAD_SUPER_METHOD bytecode to allow heap-free super meth calls.Damien George
2017-04-22py/compile: Refactor handling of special super() call.Damien George
2017-04-22py/compile: Don't do unnecessary check if iter parse node is a struct.Damien George
2017-04-22py/compile: Add COMP_RETURN_IF_EXPR option to enable return-if-else opt.Damien George
2017-04-22py/compile: Extract parse-node kind at start of func for efficiency.Damien George
2017-04-22py/compile: Don't do unnecessary check if parse node is a struct.Damien George
2017-04-22py/objtype: mp_obj_new_super doesn't need to be public, so inline it.Damien George
2017-04-21extmod/moductypes: Fix bigint handling for 32-bit ports.Paul Sokolovsky
2017-04-21py: Reduce str/repr precision of float numbers when floats are 30-bit.Damien George
2017-04-18py/modmicropython: Add micropython.kbd_intr() function.Damien George
2017-04-12py/gc: Execute finaliser code in a protected environment.Damien George
2017-04-12py/nlrsetjmp: Add check for failed NLR jump.Damien George
2017-04-12py/objfloat: Add implementation of high-quality float hashing.Damien George
2017-04-12py: Optimise types for common case where type has a single parent type.Damien George
2017-04-12py/obj: Clean up and add comments describing mp_obj_type_t struct.Damien George
2017-04-11py/objint: Use unsigned arithmetic when formatting an integer.Damien George
2017-04-11py/objint: Extract small int value directly because type is known.Damien George
2017-04-10py/runtime: When init'ing kbd intr exc, use tuple ptr instead of object.Damien George
2017-04-10py: Make sure that static emg-exc-buffer is aligned to size of mp_obj_t.Damien George
2017-04-05py/objtuple: Add support for inplace add (same as normal add).Damien George
2017-04-05py: Raise a ValueError if range() step is zero.Damien George
2017-04-04py/objint: Consolidate mp_obj_new_int_from_float to one implementation.Damien George
2017-04-04py: Add very simple but correct hashing for float and complex numbers.Damien George
2017-04-02py/objstr: Use MICROPY_FULL_CHECKS for range checking when constructing bytes.Paul Sokolovsky
2017-04-02py/obj.h: Make sequence grow more efficient and support overlapping.Damien George
2017-04-01all: Move BYTES_PER_WORD definition from ports to py/mpconfig.hDamien George
2017-03-31all: Use full path name when including mp-readline/timeutils/netutils.Damien George
2017-03-30py/objzip: Convert mp_uint_t to size_t.Damien George
2017-03-30zephyr/Makefile: Rework to use modern, official build integration.Paul Sokolovsky
2017-03-29py: Change mp_uint_t to size_t for mp_obj_str_get_data len arg.Damien George
2017-03-29py: Convert mp_uint_t to size_t for tuple/list accessors.Damien George
2017-03-29py/compile: Provide terse error message for invalid dict/set literals.Damien George
2017-03-29py: Shorten a couple of error messages.Damien George
2017-03-29py/compile: Simplify syntax-error messages for illegal assignments.Damien George
2017-03-29py/lexer: Simplify and reduce code size for operator tokenising.Damien George
2017-03-28py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George
2017-03-27py/objmap: Convert mp_uint_t to size_t.Damien George
2017-03-27py/compile: When compiling super(), handle closed-over self variable.Damien George
2017-03-27py/vm: Fix VM opcode tracing to print correct stack pointer.Damien George
2017-03-26py/obj: Change mp_uint_t to size_t for mp_obj_get_array_fixed_n len arg.Damien George
2017-03-26py/nlrx86: Better check for Zephyr (requires 1.7).Paul Sokolovsky
2017-03-25py/objarray: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-24py: Remove MP_STATE_CTX, use MP_STATE_THREAD instead (it's an alias).Damien George
2017-03-24py: Use mp_locals/mp_globals accessor funcs instead of MP_STATE_CTX.Damien George
2017-03-24py/objnamedtuple: Use size_t where appropriate, instead of mp_uint_t.Damien George
2017-03-24py/objtype: Use size_t where appropriate, instead of mp_uint_t or uint.Damien George
2017-03-24py/modbuiltins: Allow round() to return a big int if necessary.Damien George
2017-03-24py/modbuiltins: For round() builtin use nearbyint instead of round.Damien George