summaryrefslogtreecommitdiffstatshomepage
path: root/py
Commit message (Expand)AuthorAge
* py: Remove obsolute function declaration.Damien George2014-11-06
* py: Add order-only dependency for py-version.hSven Wegener2014-11-05
* py: Deactivate more code without MICROPY_PY_SYSSven Wegener2014-11-05
* py: Fix some macros defines; cleanup some includes.Damien George2014-11-05
* py: Allow bytes object as argument to some str methods.Damien George2014-11-05
* py: Allow +, in, and compare ops between bytes and bytearray/array.Damien George2014-11-05
* unix: fast: Set initial module dict size big to have high pystone score.Paul Sokolovsky2014-11-05
* py: Explicitly set uninitialised struct member to false.Damien George2014-11-03
* py: Fix builtin callable so it checks user-defined instances correctly.Damien George2014-11-03
* py: Fix bug with right-shifting small ints by large amounts.Paul Sokolovsky2014-11-02
* py: Make gc.enable/disable just control auto-GC; alloc is still allowed.Damien George2014-10-31
* py: Add builtin round function.Damien George2014-10-31
* mpz: Fix 64bit msvc buildstijn2014-10-30
* objstr: Allow to convert any buffer proto object to str.Paul Sokolovsky2014-10-31
* py: mp_obj_str_get_str(): Work with bytes too.Paul Sokolovsky2014-10-31
* py: Allow to override port config file and thus have >1 configs per port.Paul Sokolovsky2014-10-29
* Fix errors after enabling -Wpointer-arithstijn2014-10-29
* unix: Make -v dump memory info at exit.Paul Sokolovsky2014-10-26
* unix: Implement -m option (execute module from stdlib).Paul Sokolovsky2014-10-26
* py: Fix memoryview referencing so it retains ptr to original buffer.Damien George2014-10-26
* py: Fix VM dispatch following a pending exception check.Damien George2014-10-26
* py: Add mp_pending_exception global variable, for VM soft interrupt.Damien George2014-10-25
* py: Implement compile builtin, enabled only on unix port.Damien George2014-10-25
* py: Factor out mp_obj_is_package() function.Paul Sokolovsky2014-10-25
* py: mp_builtin___import__(): Add const to arg type.Paul Sokolovsky2014-10-25
* py: Compress load-int, load-fast, store-fast, unop, binop bytecodes.Damien George2014-10-25
* py: Store bytecode arg names in bytecode (were in own array).Damien George2014-10-25
* py: Improve memory usage debugging; better GC AT dumping.Damien George2014-10-24
* py: Fix debug-printing of bytecode line numbers.Damien George2014-10-24
* py: Use mp_uint_t where appropriate in stream functions.Damien George2014-10-24
* stream: Add optional 2nd "length" arg to .readinto() - extension to CPython.Paul Sokolovsky2014-10-23
* py: Properly free string parse-node; add assertion to gc_free.Damien George2014-10-23
* py: Add builtin memoryview object (mostly using array code).Damien George2014-10-23
* py: Use MP_OBJ_NULL instead of NULL in a few places.Damien George2014-10-23
* py: Clean up edge cases of malloc/realloc/free.Damien George2014-10-23
* extmod: Add uheapq module.Damien George2014-10-22
* py: Fix smallint modulo with negative arguments.Damien George2014-10-22
* py: Remove unused and unneeded SystemError exception.Damien George2014-10-22
* py: Make mp_const_empty_bytes globally available.Damien George2014-10-21
* Implement kwargs for builtin open() and _io.FileIOstijn2014-10-21
* py: Partially fix viper multi-comparison; add test for it.Damien George2014-10-19
* unix, stmhal: Implement file.readinto() method.Paul Sokolovsky2014-10-18
* py: Improve stream_read so it doesn't need to alloc 2 bits of heap.Damien George2014-10-17
* py: Add more compiler optimisations for constant if/while conditions.Damien George2014-10-17
* py: Simplify compilation of elif blocks.Damien George2014-10-17
* py: Add more debug printing code in gc_dump_alloc_table.Damien George2014-10-17
* py: Fix compiling of nested while/for and exception handler.Damien George2014-10-17
* py: Take gc_pool_start out of bss section, to reclaim 1st block of heap.Damien George2014-10-16
* stream: Handle non-blocking errors in readline() properly.Paul Sokolovsky2014-10-16
* stream: Return errno value as first arg of OSError exception.Paul Sokolovsky2014-10-16