aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2017-02-16py/mpz: Convert mp_uint_t to size_t where appropriate.Damien George
2017-02-16py/runtime: Convert mp_uint_t to size_t where appropriate.Damien George
2017-02-15py/vm: Add MICROPY_PY_THREAD_GIL_VM_DIVISOR option.Damien George
2017-02-15py/modthread: Use system-provided mutexs for _thread locks.Damien George
2017-02-14py/objtype: Replace non-ASCII single-quote char with ASCII version.Damien George
2017-02-10py/emitbc: Produce correct line number info for large bytecode chunks.Damien George
2017-02-09py/objtype: Implement __delattr__ and __setattr__.dmazzella
2017-02-08py/nlr: Fix execstack builds for ARM.Dave Hylands
2017-02-08py/map: Change mp_uint_t to size_t where appropriate.Damien George
2017-02-08py/asmxtensa.h: Explicitly cast args to 32-bits so left-shift is legal.Damien George
2017-02-04py/objcomplex: Fix typo in ternary expression.Damien George
2017-02-03py/objstr: Convert some instances of mp_uint_t to size_t.Damien George
2017-02-03py/mpconfig.h: Move PY_BUILTINS_POW3 config option to diff part of file.Damien George
2017-02-03py/objstr: Give correct behaviour when passing a dict to %-formatting.Damien George
2017-02-02py: Added optimised support for 3-argument calls to builtin.pow()Nicko van Someren
2017-02-03py/objset: Fix inplace binary ops so frozensets are not modified.Damien George
2017-02-03py/objcomplex: Correctly handle case of 0j to power of something.Damien George
2017-02-03py/objfloat: Raise ZeroDivisionError for 0 to negative power.Damien George
2017-02-02py/objset: Make inplace binary operators actually modify the set.Damien George
2017-02-02py/objstringio: Allow to specify initial capacity by passing numeric argument.Paul Sokolovsky
2017-02-01unix: Make stack be non-executableDave Hylands
2017-01-30extmod: Remove MICROPY_FSUSERMOUNT and related files.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_READER_FATFS component.Damien George
2017-01-29extmod/machine_signal: Implement "signal" abstraction for machine module.Paul Sokolovsky
2017-01-27extmod/vfs: Expose mp_vfs_mount_t type.Damien George
2017-01-27extmod: Add generic VFS sub-system.Damien George
2017-01-27py/py.mk: Add CFLAGS_MOD flag to set config file for FatFs.Damien George
2017-01-27py/showbc: Make sure to set the const_table before printing bytecode.Damien George
2017-01-27py/objstr: Optimize string concatenation with empty string.Paul Sokolovsky
2017-01-26py/objmodule: Move module init/deinit code into runtime functions.Damien George
2017-01-25py/objint: Fix left-shift overflow in checking for large int.Damien George
2017-01-22py/builtinhelp: Implement help('modules') to list available modules.Damien George
2017-01-22py: Move weak-link map to objmodule.c, and expose module maps as public.Damien George
2017-01-22py: Add builtin help function to core, with default help msg.Damien George
2017-01-21py/objint_longlong: Add stub for mp_obj_int_from_bytes_impl().Paul Sokolovsky
2017-01-21py/objint: from_bytes(): Implement "byteorder" param and arbitrary precision.Paul Sokolovsky
2017-01-21py/mpz: Implement mpz_set_from_bytes() as a foundation for int.from_bytes().Paul Sokolovsky
2017-01-19py/objint_mpz: Refactor switch-statement to remove unreachable default.Damien George
2017-01-19py/formatfloat: Remove unreachable code.Damien George
2017-01-17py/binary: mp_binary_get_size: Raise error on unsupported typecodes.Paul Sokolovsky
2017-01-17py/runtime: Refactor default case of switch to remove assert(0).Damien George
2017-01-17py/objexcept: Replace if-cond and assert(0) with simple assert.Damien George
2017-01-17py/emitnative: Remove assert(0)'s or replace with mp_not_implemented.Damien George
2017-01-17py/parse: Refactor code to remove assert(0)'s.Damien George
2017-01-17py/objgenerator: Don't raise RuntimeError if GeneratorExit ignored.Damien George
2017-01-17py/objgenerator: When throwing an object, don't make an exc instance.Damien George
2017-01-17py/runtime: Fix handling of throw() when resuming generator.Damien George
2017-01-17py/runtime: Refactor assert(0) to improve coverage.Damien George
2017-01-16py/builtinimport: Remove unreachable code and change obj-import comment.Damien George
2017-01-16py/builtinimport: Raise ValueError for bad relative import, per CPython.Damien George