summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-04-05py/objexcept: Allow compression of exception message text.Jim Mussared
2020-04-05windows: Update genhdr.targets to match makeqstrdefs.py args.Jim Mussared
2020-04-05py: Implement "common word" compression scheme for error messages.Jim Mussared
2020-04-05extmod/modubinascii: Make code private and module self-contained.Jim Mussared
2020-04-05py/dynruntime.mk: Set MICROPY_ENABLE_DYNRUNTIME instead of per module.Jim Mussared
2020-04-05stm32/Makefile: Add missing ordering dependency on generated headers.Jim Mussared
2020-04-05py: Use preprocessor to detect error reporting level (terse/detailed).Jim Mussared
2020-04-04esp32: Change from FAT to littlefs v2 as default filesystem.Damien George
2020-04-04travis: Build GENERIC_1M board as part of esp8266 job.Damien George
2020-04-04esp8266/makeimg.py: Print out info about RAM segments when building fw.Damien George
2020-04-04esp8266: Change from FAT to littlefs v2 as default filesystem.Damien George
2020-04-04docs,tests: Add docs and test for uasyncio custom exc handler methods.Damien George
2020-04-04extmod/uasyncio: Add global exception handling methods.Kevin Köck
2020-04-02esp32/README.md: Fix typo in venv instructions.Jim Mussared
2020-04-02extmod/uasyncio: Add StreamReader/StreamWriter as aliases of Stream cls.Damien George
2020-04-02extmod/uasyncio: Add error message to Lock.release's RuntimeError.Kevin Köck
2020-04-02extmod/uasyncio: Implement Loop.stop() to stop the event loop.Damien George
2020-04-01extmod/uasyncio: Don't create a Loop instance in get_event_loop().Damien George
2020-03-31unix/mpthreadport: Ensure enough thread stack to detect overflow.Damien George
2020-03-30tests/run-tests: Add commands to print and clean *.exp,out files.David Lechner
2020-03-30tests/float: Add new lexer test to test parsing of float without prefix.David Lechner
2020-03-30tests: Format all Python code with black, except tests in basics subdir.David Lechner
2020-03-30tests/micropython/heapalloc_fail_set.py: Remove extra trailing comma.David Lechner
2020-03-30travis: Build full unix coverage build on osx job.David Lechner
2020-03-30all: Fix implicit casts of float/double, and signed comparison.David Lechner
2020-03-30tools/pyboard.py: Add -d as an alias for --device.Lars Kellogg-Stedman
2020-03-30tools/pyboard.py: Support setting device/baudrate from shell env vars.Lars Kellogg-Stedman
2020-03-28tests/basics/dict_pop.py: Remove extra comma in call and fix grammar.David Lechner
2020-03-28all: Remove spaces inside and around parenthesis.Damien George
2020-03-28travis: Build NUCLEO_L073RZ instead of B_L072Z_LRWAN1 for stm32 job.Damien George
2020-03-28stm32/boards: Disable pend_throw, uheapq, utimeq on small-flash boards.Damien George
2020-03-28stm32/mpconfigport.h: Make most extended modules configurable by board.Damien George
2020-03-28travis: Use grep with --text on qemu-arm output.David Lechner
2020-03-28travis: Use custom PPA to get pre-built uncrustify.David Lechner
2020-03-27unix: Implement PEP 475 to retry syscalls failing with EINTR.David Lechner
2020-03-27unix/mpthreadport: Fix crash when thread stack size <= 8k.David Lechner
2020-03-27stm32/mpconfigport.h: Remove unused root pointer for BTstack bindings.Damien George
2020-03-26esp32: Enable and freeze uasyncio.Damien George
2020-03-26esp8266: Enable and freeze uasyncio.Damien George
2020-03-26stm32: Enable and freeze uasyncio.Damien George
2020-03-26extmod/uasyncio: Add manifest.py for freezing uasyncio Py files.Damien George
2020-03-26docs/library: Add initial docs for uasyncio module.Damien George
2020-03-26unix: Enable uasyncio C helper module on coverage build.Damien George
2020-03-26extmod/uasyncio: Add optional implementation of core uasyncio in C.Damien George
2020-03-26tests/net_inet: Add uasyncio internet tests.Damien George
2020-03-26tests/multi_net: Add uasyncio test for TCP server and client.Damien George
2020-03-26tests: Make default MICROPYPATH include extmod to find uasyncio.Damien George
2020-03-26travis: Exclude some uasyncio tests on OSX.Damien George
2020-03-26tests/run-tests: Skip uasyncio if no async, and skip one test on native.Damien George
2020-03-26tests/extmod: Add uasyncio tests.Damien George