aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2016-08-15py/sequence: Allow to use bignums as indices in slice objects.Damien George
2016-08-15py/obj.h: For obj reprs A,B,C use void* explicitly for mp_obj_t typedef.Damien George
2016-08-14py/objstr: Use mp_raise_{Type,Value}Error instead of mp_raise_msg.Damien George
2016-08-14py/runtime.h: Move comment about mp_not_implemented to correct place.Damien George
2016-08-14py/objtuple: In tuple_cmp_helper, use mp_check_self instead of raising.Damien George
2016-08-12py: Get rid of assert() in method argument checking functions.Paul Sokolovsky
2016-08-12py/objdict: Get rid of asserts (remove/replace with mp_check_self()).Paul Sokolovsky
2016-08-12py/runtime.h: Define mp_check_self(pred) helper macro.Paul Sokolovsky
2016-08-12py/runtime: Factor out exception raising helpers.Paul Sokolovsky
2016-08-07py/mpconfig.h: Define MP_ALWAYSINLINE for reuse.Paul Sokolovsky
2016-08-07py/objstr,objstrunicode: Fix inconistent #if indentation.Paul Sokolovsky
2016-08-07py/objstr: Make .partition()/.rpartition() methods configurable.Paul Sokolovsky
2016-08-04py/mkrules.mk: Allow to add more items for "clean" target using CLEAN_EXTRA.Paul Sokolovsky
2016-07-31py/py.mk: Extra switches to build "embedded" BerkeleyDB BTree lib.Paul Sokolovsky
2016-07-30py/mpconfig.h: Add MICROPY_STREAMS_POSIX_API setting.Paul Sokolovsky
2016-07-30lib/embed/abort_: Implementation of abort_() function raising uPy exception.Paul Sokolovsky
2016-07-30py/stream: Add adapter methods with POSIX-compatible signatures.Paul Sokolovsky
2016-07-28py/objstringio: Implement MP_STREAM_SEEK ioctl and add seek() method.Paul Sokolovsky
2016-07-28py/objstringio: Add MP_STREAM_FLUSH ioctl and flush() method.Paul Sokolovsky
2016-07-27py/stream: Implement generic flush() method, in terms of C-level ioctl.Paul Sokolovsky
2016-07-26py/stream: Stream module works with errno's, so should include mperrno.h.Paul Sokolovsky
2016-07-25py/objstrunicode: str_index_to_ptr: Implement positive indexing properly.Paul Sokolovsky
2016-07-25py/objstrunicode: str_index_to_ptr: Should handle bytes too.Paul Sokolovsky
2016-07-25py/stream.h: Remove dated comment of POSIX-specificity of EAGAIN.Paul Sokolovsky
2016-07-25py/stream.h: Move mp_stream_write_adaptor() inside ifdef block.Paul Sokolovsky
2016-07-22unix: Enable MICROPY_PY_STR_BYTES_CMP_WARN.Paul Sokolovsky
2016-07-22py/mpconfig.h: Fix description for MICROPY_PY_STR_BYTES_CMP_WARN.Paul Sokolovsky
2016-07-22py/obj: Issue a warning when str and bytes objects are compared.Paul Sokolovsky
2016-07-21py: Fix nlrthumb.c when DEBUG=1 is definedDave Hylands
2016-07-21py/gc: Implement GC running by allocation threshold.Paul Sokolovsky
2016-07-16esp8266: Cache Xtensa-built libaxtls.a in local build dir.Paul Sokolovsky
2016-07-14py/stream: Implement 2- and 3-arg write() method as an extension to CPython.Paul Sokolovsky
2016-07-13extmod/modussl_axtls: Further changes to allow alternative SSL modules.Paul Sokolovsky
2016-07-13extmod/modussl: Rename to modussl_axtls.c, to allow impl using other SSL libs.Paul Sokolovsky
2016-07-11py/nlrx64.S: Prefix mp_thread_get_state with an underscore on Mac.Damien George
2016-07-11qemu-arm: Enable gcc LTO option for nlrthumb.cDaniel Tralamazza
2016-07-06py/objarray: Split out header to allow direct access to object.Paul Sokolovsky
2016-07-04extmod/moduos_dupterm: Reserve buffer bytearray object for dupterm.Paul Sokolovsky
2016-07-02py/mpconfig.h: Mention MICROPY_PY_BTREE config option.Paul Sokolovsky
2016-07-02py/builtinimport: Disable "imported as namespace package" warning.Paul Sokolovsky
2016-07-01py/gc: Calculate (and report) maximum contiguous free block size.Paul Sokolovsky
2016-06-30py/gc: Be sure to count last allocated block at heap end in stats.Paul Sokolovsky
2016-06-28py/mpthread: Include mpstate.h when defining GIL macros.Damien George
2016-06-28py/nlrsetjmp: Update to take into account new location of nlr_top.Damien George
2016-06-28py/nlrthumb: Convert NLR thumb funcs from asm to C with inline-asm.Damien George
2016-06-28py/modthread: Allow to properly set the stack limit of a thread.Damien George
2016-06-28py/mpthread.h: Move GIL macros outside MICROPY_PY_THREAD block.Damien George
2016-06-28py/modthread: Make Lock objects work when GIL is enabled.Damien George
2016-06-28py: Don't use gc or qstr mutex when the GIL is enabled.Damien George
2016-06-28py: Implement a simple global interpreter lock.Damien George