summaryrefslogtreecommitdiff
path: root/unix
AgeCommit message (Expand)Author
2017-09-01Fix issue #207, esp8266 file operations problems (#222)Dan Halbert
2017-08-25Initial merge of micropython v1.9.2 into circuitpython 2.0.0 (in development)...Dan Halbert
2017-08-21all: Make static dicts use mp_rom_map_elem_t type and MP_ROM_xxx macros.Damien George
2017-08-21extmod,unix: For uos.stat interpret st_size member as an unsigned int.Damien George
2017-08-13all: Raise exceptions via mp_raise_XXXJavier Candeira
2017-08-11Turn on Rosie CI testing to test new builds on real hardware.Scott Shawcroft
2017-08-11py/modsys: Initial implementation of sys.getsizeof().Paul Sokolovsky
2017-08-11all: Make use of $(TOP) variable in Makefiles, instead of "..".Damien George
2017-08-10py: Pretend frozen files are stored under .frozen rather than the empty path.Scott Shawcroft
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-30unix/modjni: Convert to mp_rom_map_elem_t.Paul Sokolovsky
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-07-12unix/Makefile: Disable assertions in the standard unix executable.Damien George
2017-07-12unix/modsocket: Remove unnecessary asserts.Damien George
2017-07-04py/repl: Change mp_uint_t to size_t in repl helpers.Damien George
2017-06-30tests/unix/extra_coverage: Add test for mp_vprintf with bad fmt spec.Damien George
2017-06-20Merge tag 'v1.9.1'2.0.0-alpha.0Scott Shawcroft
2017-06-17unix/mpconfigport.mk: Update descriptions of readline and TLS options.Paul Sokolovsky
2017-06-15all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George
2017-06-11unix/modtime: Replace strftime() with localtime().Paul Sokolovsky
2017-06-08unix/Makefile: replace references to make with $(MAKE)Tamas TEVESZ
2017-06-01unix: Convert to use core-provided version of built-in import().Damien George
2017-05-29various: Spelling fixesVille Skyttä
2017-05-26unix/Makefile: Don't add frozen bytecode to minimal build.Damien George
2017-05-12unix: Move upip to frozen bytecode dir.Paul Sokolovsky
2017-05-12unix/Makefile: Enable frozen bytecode modules dir.Paul Sokolovsky
2017-05-10ports: Add ilistdir in uos module.Damien George
2017-05-09unix/main: Implement -m option for packages.Paul Sokolovsky
2017-05-06unix/main: Don't allow to specify too small heap size.Paul Sokolovsky
2017-05-03py/modio: Implement uio.resource_stream(package, resource_path).Paul Sokolovsky
2017-05-01unix/main: Ignore SIGPIPE signal, instead make EPIPE arrive.Paul Sokolovsky
2017-04-26unix: Remove obsolete MICROPY_FATFS macro.Damien George
2017-04-22mpy-cross, unix, windows, stmhal: Enable return-if-else optimisation.Damien George
2017-04-12unix: Enabled high-quality float hashing in coverage build.Damien George
2017-04-11unix, windows: Use core-provided KeyboardInterrupt exception object.Damien George
2017-04-01all: Move BYTES_PER_WORD definition from ports to py/mpconfig.hDamien George
2017-03-31all: Use full path name when including mp-readline/timeutils/netutils.Damien George
2017-03-31unix: Convert mp_uint_t to size_t in alloc.c.Pavol Rusnak
2017-03-29unix: Convert mp_uint_t to size_t for use of mp_obj_list_get.Damien George
2017-03-25unix: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-23all/Makefile: Remove -ansi from GCC flags, its ignored anyway.Krzysztof Blazewicz
2017-03-20unix/coverage: Enable scheduler and add tests for it.Damien George
2017-03-20unix: Use mp_handle_pending() in time.sleep().Damien George
2017-03-14tests: Improve binary.c test coverage.Rami Ali
2017-03-14unix/main: Refactor to put lexer constructors all in one place.Damien George
2017-03-05unix/moduselect: Properly implement ipoll object iteration.Paul Sokolovsky
2017-03-03unix: Remove remaining, obsolete traces of GNU readline support.Damien George
2017-03-02unix/modmachine: Add Signal class to machine module.Damien George
2017-02-24Correct name of mp_raise_NotImplementedError to make error name.Scott Shawcroft
2017-02-24Switch exception throwing to mp_raise helpers. It saves a little code space e...Scott Shawcroft