aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-06-15py/objint: In to_bytes(), allow length arg to be any int and check sign.Damien George
2017-06-15py/objint: Support "big" byte-order in int.to_bytes().Damien George
2017-06-15all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George
2017-06-14py/compile: Raise SyntaxError if positional args are given after */**.Damien George
2017-06-14py/modthread: Raise RuntimeError in release() if lock is not acquired.Damien George
2017-06-13py/formatfloat: Fix number of digits and exponent sign when rounding.Damien George
2017-06-09py/objstringio: If created from immutable object, follow copy on write policy.Paul Sokolovsky
2017-06-09py/makeqstrdefs.py: Make script run correctly with Python 2.6.Damien George
2017-06-09py: Provide mp_decode_uint_skip() to help reduce stack usage.Damien George
2017-06-08py/modsys: Allow to compile with obj-repr D and PY_ATTRTUPLE disabled.Damien George
2017-06-08py/objstr: Allow to compile with obj-repr D, and unicode disabled.Damien George
2017-06-08py/persistentcode: Allow to compile with complex numbers disabled.Damien George
2017-06-04extmod/modlwip: Fix error codes for duplicate calls to connect().Paul Sokolovsky
2017-06-02py/objstr: Catch case of negative "maxsplit" arg to str.rsplit().Damien George
2017-06-01py/modbuiltins: Add core-provided version of input() function.Damien George
2017-05-29various: Spelling fixesVille Skyttä
2017-05-26py/objstringio: Catch mp_uint_t overflow of stream position in write().Tom Collins
2017-05-26py/mkrules.mk: Fix auto-qstr generation when "make -B" is used.Damien George
2017-05-25py/emitbc: Fix bug with BC emitter computing Python stack size.Damien George
2017-05-25py/vm: Fix bug with unwind jump popping the iterator from a for loop.Damien George
2017-05-25py/vm: Fix bug with stackless mode and unwinding of exceptions.Damien George
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