summaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-05-19py/mkenv.mk: Use $(TOP) instead of ".." to reference tools, mpy-cross.Damien George
2017-05-18py/objrange: Fix slicing of range when step of slice is negative.Damien George
2017-05-18py/sequence: Fix boundary errors when slicing with a negative step.Damien George
2017-05-15py/objstringio: Fix StringIO reads at or beyond EOF.Tom Collins
2017-05-14py/modsys: update conditionals for code referencing sys.stdoutTom Collins
2017-05-12py/lexer: Process CR earlier to allow newlines checks on chr1.Tom Collins
2017-05-11py/mkrules.mk: Add dependency of .mpy files upon mpy-cross.Damien George
2017-05-09unix/main: Implement -m option for packages.Paul Sokolovsky
2017-05-09py/lexer: Simplify lexer startup by using dummy bytes and next_char().Tom Collins
2017-05-09py/binary: Handle storing big-ints to all arrays types.Damien George
2017-05-06py/modio: resource_stream: Implement "package" param handling.Paul Sokolovsky
2017-05-06py/objint: In int.from_bytes, only create big-int if really needed.Damien George
2017-05-03py/modio: Implement uio.resource_stream(package, resource_path).Paul Sokolovsky
2017-04-30py: Cleanup use of global DEBUG preprocessor definitionstijn
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