aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-06-25CODECONVENTIONS: docs: Markup for None/True/False.Paul Sokolovsky
2017-06-25docs/btree: Use markup adhering to the latest conventions.Paul Sokolovsky
2017-06-25CODECONVENTIONS: Start to describe docs conventions.Paul Sokolovsky
2017-06-24docs/builtins: List builtin exceptions.Paul Sokolovsky
2017-06-24esp8266/README: Make "Documentation" a top-level section.Paul Sokolovsky
2017-06-24README: Mention support for bytecode and frozen bytecode.Paul Sokolovsky
2017-06-24extmod/moduzlib: decompress: Remove stale "(void)n_args".Paul Sokolovsky
2017-06-24docs/gc: Document gc.threshold() function.Paul Sokolovsky
2017-06-24docs/gc: Mark mem_alloc()/mem_free() as uPy-specific.Paul Sokolovsky
2017-06-24docs/conf.py: Include 3 levels of ToC in latexpdf output.Paul Sokolovsky
2017-06-23docs/esp8266/tutorial/intro: Sphinx requires blank lines around literal blocks.Paul Sokolovsky
2017-06-23docs/esp8266/tutorial/intro: Discourage use of 512kb firmwares.Paul Sokolovsky
2017-06-23docs/license: Update copyright year.Paul Sokolovsky
2017-06-23tests/connect_nonblock: Refactor towards real net_hosted test.Paul Sokolovsky
2017-06-23tests/net_inet: Move tests which don't require full Internet to net_hosted.Paul Sokolovsky
2017-06-23esp8266: Enable MICROPY_ENABLE_FINALISER.Paul Sokolovsky
2017-06-22esp8266: Move mp_hal_pin_open_drain from esp_mphal.c to machine_pin.c.Damien George
2017-06-22stmhal/modules: Provide sym-link to onewire.py driver.Damien George
2017-06-22esp8266: Reinstate 1-wire scripts by sym-linking to drivers/onewire/.Damien George
2017-06-22drivers/onewire: Move onewire.py, ds18x20.py from esp8266 to drivers.Damien George
2017-06-22stmhal: Make available the _onewire module, for low-level bus control.Damien George
2017-06-22stmhal: Add "quiet timing" enter/exit functions.Damien George
2017-06-22extmmod/modonewire: Rename public module to mp_module_onewire.Damien George
2017-06-22extmod: Move modonewire.c from esp8266 to extmod directory.Damien George
2017-06-22esp8266/modonewire: Make timings static and remove onewire.timings func.Damien George
2017-06-22esp8266/modonewire: Move low-level 1-wire bus code to modonewire.c.Damien George
2017-06-22py/compile: Optimise emitter label indices to save a word of heap.Damien George
2017-06-22tests/basics: Add tests for for-else statement.Damien George
2017-06-22py/compile: Fix bug with break/continue in else of optimised for-range.Damien George
2017-06-21tests/net_inet: Add tests for accept and connect in nonblocking mode.Damien George
2017-06-21tests/net_inet/test_tls_sites.py: Integration test for SSL connections.Paul Sokolovsky
2017-06-20esp8266: Make onewire module and support code usable by other ports.Damien George
2017-06-20cc3200: Initialise variable to zero to prevent compiler warnings.Damien George
2017-06-20cc3200: Make non-zero socket timeout work with connect/accept/send.Damien George
2017-06-20esp8266/Makefile: Add LIB_SRC_C variable to qstr auto-extraction list.Damien George
2017-06-17unix/mpconfigport.mk: Update descriptions of readline and TLS options.Paul Sokolovsky
2017-06-16CODECONVENTIONS: Clarify MicroPython changes sign-off process.Paul Sokolovsky
2017-06-16docs/select: Rename to uselect, to match the actual module name.Paul Sokolovsky
2017-06-15teensy/Makefile: Include relevant sources in list for qstr extraction.Damien George
2017-06-15qemu-arm/Makefile: Include relevant sources in list for qstr extraction.Damien George
2017-06-15stmhal: Move pybstdio.c to lib/utils/sys_stdio_mphal.c for common use.Damien George
2017-06-15esp8266/Makefile: Allow FROZEN_DIR,FROZEN_MPY_DIR to be overridden.Damien George
2017-06-15teensy: Provide dummy implementation of extint_register_pin.Damien George
2017-06-15stmhal: Add .value() method to Switch object, to mirror Pin and Signal.Damien George
2017-06-15stmhal: Add initial implementation of Pin.irq() method.Damien George
2017-06-15py/objint: In to_bytes(), allow length arg to be any int and check sign.Damien George
2017-06-15py/objint: Support "big" byte-order in int.to_bytes().Damien George
2017-06-15stmhal: Make error messages more consistent across peripherals.Damien George
2017-06-15all: Make more use of mp_raise_{msg,TypeError,ValueError} helpers.Damien George
2017-06-14py/compile: Raise SyntaxError if positional args are given after */**.Damien George