aboutsummaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2016-09-22unix: Enable btree module for coverage build.Damien George
2016-09-22all: Remove 'name' member from mp_obj_module_t struct.Damien George
2016-09-18unix/modjni: array(): Support creation of object arrays.Paul Sokolovsky
2016-09-17unix/modjni: Add array() top-level function to create Java array.Paul Sokolovsky
2016-09-16unix/modjni: Implement subscription for object arrays.Paul Sokolovsky
2016-09-12unix: Fix build for when MICROPY_PY_SOCKET=0.Renato Aguiar
2016-09-05unix,stmhal,esp8266: When find'ing frozen files follow symbolic links.Damien George
2016-09-05py: Add MICROPY_USE_INTERNAL_PRINTF option, defaults to enabled.Delio Brignoli
2016-09-04tests/extmod: Add a test for framebuf module, tested by coverage build.Damien George
2016-09-02tests/unix/extra_coverage: Add test for str/bytes with invalid hash.Damien George
2016-09-01py/mpprint: Fail an assertion with unsupported format specifiers.Delio Brignoli
2016-08-31unix,stmhal,esp8266: When find'ing frozen files don't use extra slash.Damien George
2016-08-24extmod/modubinascii: Make crc32() support configurable.Paul Sokolovsky
2016-08-15ports: Remove typedef of machine_ptr_t, it's no longer needed.Damien George
2016-08-10unix/mpconfigport.h: Don't include stdio.h on MacOS.ilovezfs
2016-08-07py/objstr: Make .partition()/.rpartition() methods configurable.Paul Sokolovsky
2016-08-07unix/moduselect: Allow poll.register(), etc. accept fd-like objects.Paul Sokolovsky
2016-08-06unix: Enable websocket module.Paul Sokolovsky
2016-07-31unix/Makefile: And note why btree module is disabled for coverage build.Paul Sokolovsky
2016-07-30py/mpconfig.h: Add MICROPY_STREAMS_POSIX_API setting.Paul Sokolovsky
2016-07-28unix/file: Use generic stream flush() method.Paul Sokolovsky
2016-07-27unix/file: fdfile_ioctl(): Fix argument to check_fd_is_open().Paul Sokolovsky
2016-07-27unix/file: ioctl(): Check that file is open before operations.Paul Sokolovsky
2016-07-27unix/file: Implement MP_STREAM_FLUSH ioctl.Paul Sokolovsky
2016-07-26unix/mpconfigport.h: Include stdio.h by default.Paul Sokolovsky
2016-07-22unix: Enable MICROPY_PY_STR_BYTES_CMP_WARN.Paul Sokolovsky
2016-07-21unix: Disable MICROPY_GC_ALLOC_THRESHOLD for minimal build.Paul Sokolovsky
2016-07-16unix: Cache libaxtls.a in local build dir.Paul Sokolovsky
2016-07-13extmod/modussl_axtls: Further changes to allow alternative SSL modules.Paul Sokolovsky
2016-07-11unix/mpthreadport: Adjust minimum thread stack, and stack limit check.Damien George
2016-07-09unix: Disable the GIL to improve performance of non-thread code.Damien George
2016-07-09unix/main: When preparing sys.path, allocate exact strings on uPy heap.Paul Sokolovsky
2016-07-08unix/main: Improve help for -X options a bit.Paul Sokolovsky
2016-07-08unix/main: Error out on unknown value of suffix in -X heapsize= option.Paul Sokolovsky
2016-07-03unix/mpconfigport_minimal.h: Allow to print a string within 1KB of heap.Paul Sokolovsky
2016-07-03unix/Makefile: Make "minimal" build be minimal again.Paul Sokolovsky
2016-07-02unix: Enable btree module.Paul Sokolovsky
2016-06-28py/modthread: Allow to properly set the stack limit of a thread.Damien George
2016-06-28unix/modtime: Release the GIL when sleeping.Damien George
2016-06-28unix/mpthreadport: Suppress compiler warning about unused arguments.Damien George
2016-06-28unix/gccollect: Provide declaration of exported function.Damien George
2016-06-28unix/mpthreadport: Use SA_SIGINFO for GC signal handler.Damien George
2016-06-28unix: Implement garbage collection with threading.Damien George
2016-06-28unix/file: If write syscall returns because of EINTR then try again.Damien George
2016-06-28py/modthread: Implement lock object, for creating a mutex.Damien George
2016-06-28py/modthread: Add stack_size() function.Damien George
2016-06-28unix: Add basic thread support using pthreads.Damien George
2016-06-28py: Add MP_STATE_THREAD to hold state specific to a given thread.Damien George
2016-06-27unix: Fix Makefile to handle gc-sections linker flags on Mac OS.Martin Müller
2016-06-19unix/modmachine: Enable time_pulse_us() function.Paul Sokolovsky