aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-11-21py/objfloat: Allow float() to parse anything with the buffer protocol.Damien George
2017-11-20py/objnamedtuple: Allow to reuse namedtuple basic functionality.Paul Sokolovsky
2017-11-20py: Add config option to disable multiple inheritance.Damien George
2017-11-16py/objstr: When constructing str from bytes, check for existing qstr.Damien George
2017-11-16py/objstr: Make mp_obj_new_str_of_type check for existing interned qstr.Damien George
2017-11-16py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str.Damien George
2017-11-15py/mkenv.mk: Use $(PYTHON) consistently when calling Python tools.Christopher Arndt
2017-11-15py/emitnative: Clean up asm macro names so they have dest as first arg.Damien George
2017-11-12py/objnamedtuple: Add _asdict function if OrderedDict is supportedstijn
2017-11-11py/objtype: mp_obj_new_type: Name base types related vars more clearly.Paul Sokolovsky
2017-11-08py/mpconfig: Introduce reusable MP_HTOBE32(), etc. macros.Paul Sokolovsky
2017-11-01py/compile: Use alloca instead of qstr_build when compiling import name.Damien George
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-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-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