aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-11-02Merge tag 'v1.9.3'Scott Shawcroft
2017-11-01py: Prevent crash with LTO.Scott Shawcroft
2017-10-31Revert "py/{mkenv.mk,mkrules.mk}: Append .exe for Windows executable files."Damien George
2017-10-30extmod/modussl: Add finaliser support for ussl objects.Eric Poulsen
2017-10-27py/objtype: Introduce MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS.Paul Sokolovsky
2017-10-27py/objtype: Define all special methods if requested.Paul Sokolovsky
2017-10-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
2017-10-24all: Use NULL instead of "" when calling mp_raise exception helpers.Damien George
2017-10-21py/objtype: Fit qstrs for special methods in byte type.Paul Sokolovsky
2017-10-19py/objtype: Use CPython compatible method name for sizeof.Paul Sokolovsky
2017-10-19py/argcheck: Remove #if guard around terse error message helper func.Damien George
2017-10-13extmod/uos_dupterm: Update uos.dupterm() and helper funcs to have index.Damien George
2017-10-12py/emitnative: Simplify binary op emitter, no need to check inplace ops.Damien George
2017-10-11py/emitnative: Implement floor-division and modulo for viper emitter.Damien George
2017-10-11py/modbuiltins: Use existing utf8_get_char helper in builtin ord func.Damien George
2017-10-10py/formatfloat: Use standard isinf, isnan funcs instead of custom ones.Damien George
2017-10-10py/formatfloat: Don't print the negative sign of a NaN value.Damien George
2017-10-10py/modmath: Convert log2 macro into a function.Damien George
2017-10-10py/modmath: Add full checks for math domain errors.Damien George
2017-10-10py/bc: Update opcode_format_table to match the bytecode.Damien George
2017-10-08Freeze libraries needed by adafruit_circuitplayground library into firmware.Dan Halbert
2017-10-05py/persistentcode: Bump .mpy version number to version 3.Damien George
2017-10-05py/objtype: Clean up unary- and binary-op enum-to-qstr mapping tables.Damien George
2017-10-05py: Clean up unary and binary enum list to keep groups together.Damien George
2017-10-04py/mpprint: Only check for null string printing when NDEBUG not defined.Damien George
2017-10-04py/objstr: Make empty bytes object have a null-terminating byte.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-10-04py/objtype: Change type of enum-to-qstr table to uint16_t to save space.Damien George
2017-10-04py/{mkenv.mk,mkrules.mk}: Append .exe for Windows executable files.chrismas9
2017-10-03py/objset: Include the failed key in a KeyError raised from set.remove.Damien George
2017-10-03py/objset: Check that RHS of a binary op is a set/frozenset.Damien George
2017-10-03py/objset: Simplify set and frozenset by separating their locals dicts.Damien George
2017-09-26py/objfloat: Support raising a negative number to a fractional power.Damien George
2017-09-26py: Add config option to print warnings/errors to stderr.David Lechner
2017-09-25py: Clarify which mp_unary_op_t's may appear in the bytecode.Paul Sokolovsky
2017-09-25py/persistentcode: Define mp_raw_code_save_file() for any unix target.Anton Patrushev
2017-09-22py/runtime0: Add comments about unary/binary-op enums used in bytecode.Damien George
2017-09-22py/vm: Use lowercase letter at start of exception message.Damien George
2017-09-21py/vstr: Raise a RuntimeError if fixed vstr buffer overflows.Damien George
2017-09-21py/stream: Remove unnecessary checks for NULL return from vstr_add_len.Damien George
2017-09-21py/objexcept: Prevent infinite recursion when allocating exceptions.Damien George
2017-09-19py/objstr: strip: Don't strip "\0" by default.Paul Sokolovsky
2017-09-18py/mpconfig.h: Add note that using computed gotos in VM is not C99.Damien George
2017-09-18py/{objfloat,objcomplex}: Optimise MP_UNARY_OP_ABS by reusing variables.Damien George
2017-09-18py/modbuiltins: Implement abs() by dispatching to MP_UNARY_OP_ABS.Paul Sokolovsky
2017-09-13py/emitbc: Remove stray semicolon in outer scope.Damien George
2017-09-13py/runtime.h: Change empty mp_warning macro so var-args are non empty.Damien George
2017-09-12py/builtinhelp: Change signature of help text var from pointer to array.Damien George
2017-09-12py/nlrx86: Fix building for Android/x86.ASM
2017-09-10py/runtime: Implement dispatch for "reverse op" special methods.Paul Sokolovsky