summaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-11-27py: Add NLR support for xtensa CPU.Damien George
2014-11-27pfenv_printf: Properly implement %p format specifier.Paul Sokolovsky
2014-11-27builtin: Reimplement __repl_print__() in terms of print().Paul Sokolovsky
2014-11-27map: Add empty fixed map.Paul Sokolovsky
2014-11-27py: #if guard str_make_new when not needed.Damien George
2014-11-22moduhashlib: Initial module skeleton.Paul Sokolovsky
2014-11-21py: Add support for float/double arrays in array module.Damien George
2014-11-16py: Make stream seek correctly check for ioctl fn; add seek for textio.Damien George
2014-11-17stream: Implement seek operation support via ioctl, wrapped in generic method.Paul Sokolovsky
2014-11-17stream: Convert .ioctl() to take fixed number of args.Paul Sokolovsky
2014-11-15py: Use __hash__ method if a type defines itstijn
2014-11-06py: Fix order-only dependencies in mkrules.mk and py.mk.Sven Wegener
2014-11-06py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George
2014-11-06py: Remove obsolute function declaration.Damien George
2014-11-05py: Add order-only dependency for py-version.hSven Wegener
2014-11-05py: Deactivate more code without MICROPY_PY_SYSSven Wegener
2014-11-05py: Fix some macros defines; cleanup some includes.Damien George
2014-11-05py: Allow bytes object as argument to some str methods.Damien George
2014-11-05py: Allow +, in, and compare ops between bytes and bytearray/array.Damien George
2014-11-05unix: fast: Set initial module dict size big to have high pystone score.Paul Sokolovsky
2014-11-03py: Explicitly set uninitialised struct member to false.Damien George
2014-11-03py: Fix builtin callable so it checks user-defined instances correctly.Damien George
2014-11-02py: Fix bug with right-shifting small ints by large amounts.Paul Sokolovsky
2014-10-31py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George
2014-10-31py: Add builtin round function.Damien George
2014-10-30mpz: Fix 64bit msvc buildstijn
2014-10-31objstr: Allow to convert any buffer proto object to str.Paul Sokolovsky
2014-10-31py: mp_obj_str_get_str(): Work with bytes too.Paul Sokolovsky
2014-10-29py: Allow to override port config file and thus have >1 configs per port.Paul Sokolovsky
2014-10-29Fix errors after enabling -Wpointer-arithstijn
2014-10-26unix: Make -v dump memory info at exit.Paul Sokolovsky
2014-10-26unix: Implement -m option (execute module from stdlib).Paul Sokolovsky
2014-10-26py: Fix memoryview referencing so it retains ptr to original buffer.Damien George
2014-10-26py: Fix VM dispatch following a pending exception check.Damien George
2014-10-25py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George
2014-10-25py: Implement compile builtin, enabled only on unix port.Damien George
2014-10-25py: Factor out mp_obj_is_package() function.Paul Sokolovsky
2014-10-25py: mp_builtin___import__(): Add const to arg type.Paul Sokolovsky
2014-10-25py: Compress load-int, load-fast, store-fast, unop, binop bytecodes.Damien George
2014-10-25py: Store bytecode arg names in bytecode (were in own array).Damien George
2014-10-24py: Improve memory usage debugging; better GC AT dumping.Damien George
2014-10-24py: Fix debug-printing of bytecode line numbers.Damien George
2014-10-24py: Use mp_uint_t where appropriate in stream functions.Damien George
2014-10-23stream: Add optional 2nd "length" arg to .readinto() - extension to CPython.Paul Sokolovsky
2014-10-23py: Properly free string parse-node; add assertion to gc_free.Damien George
2014-10-23py: Add builtin memoryview object (mostly using array code).Damien George
2014-10-23py: Use MP_OBJ_NULL instead of NULL in a few places.Damien George
2014-10-23py: Clean up edge cases of malloc/realloc/free.Damien George
2014-10-22extmod: Add uheapq module.Damien George
2014-10-22py: Fix smallint modulo with negative arguments.Damien George