aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-01-12py/nativeglue: Use mp_const_X instead of &mp_const_X_obj.Damien George
2020-01-12docs/library: Add / to indicate positional-only args in library docs.Jason Neal
2020-01-12esp32/modmachine: Add implementation of machine.soft_reset().Thorsten von Eicken
2020-01-12docs/library/machine: Document machine.soft_reset() function.Thorsten von Eicken
2020-01-12py/runtime: Move MICROPY_PORT_INIT_FUNC near the end of mp_init().David Lechner
2020-01-12lib/mp-readline: Add word-based move/delete EMACS key sequences.Yonatan Goldschmidt
2020-01-12lib/mp-readline: Add an assert() to catch buffer overflows.Yonatan Goldschmidt
2020-01-12py/unicode: Add unichar_isalnum().Yonatan Goldschmidt
2020-01-12docs/README: Add short paragraph about using readthedocs.Thorsten von Eicken
2020-01-12unix: Rename unix binaries to micropython-variant (not _variant).Jim Mussared
2020-01-12travis: Update travis to specify which unix variant to build.Jim Mussared
2020-01-12unix: Add placeholder DEV variant with settrace enabled.Jim Mussared
2020-01-12unix: Add build variants, analogous to boards on bare-metal.Jim Mussared
2020-01-12py/mkenv.mk: Move usage of 32-bit flags to py.mk.Jim Mussared
2020-01-09py: Make mp_obj_get_type() return a const ptr to mp_obj_type_t.Damien George
2020-01-07stm32/boards/PYBD: Change RTC asynch prediv from 1 to 4.Damien George
2020-01-06tests/unix: Make unix time test pass on more platforms.stijn
2020-01-06tests/cpydiff: Add CPy diff-test for using dict.keys() as a set.Damien George
2020-01-06esp32/Makefile: Assign result of $call to dummy var for older make.Damien George
2020-01-06docs/library/machine.UART.rst: Detail timeout behaviour of read methods.Jason Neal
2020-01-06docs/library/machine.I2C.rst: Use positional-only arguments syntax.Jason Neal
2020-01-06tests/run-tests: Handle 'CRASH' return by float.py feature test.David Lechner
2020-01-06docs: More consistent capitalization and use of articles in headings.Jason Neal
2020-01-06tools/gen-cpydiff.py: Adjust subsections to sentence case.Jason Neal
2019-12-29py/objslice: Inline fetching of slice paramters in str_subscr().Nicko van Someren
2019-12-28py/objslice: Add support for indices() method on slice objects.Nicko van Someren
2019-12-28nrf/examples: Fix typo in mountsd.py, wireing -> wiring.Tim Gates
2019-12-28unix/modos: Add uos.rename and uos.rmdir.Damien George
2019-12-28unix/modtime: Add utime.mktime function, to complement utime.localtime.Andrew Leech
2019-12-28py: Clean up commented-out code and comments about exception hierarchy.Damien George
2019-12-28nrf/main: Remove unnecessary repl_info(0) call.Yonatan Goldschmidt
2019-12-28lib/utils/pyexec: Introduce MICROPY_REPL_INFO, wrap debug prints in it.Yonatan Goldschmidt
2019-12-27extmod/modbluetooth: Fix func prototype, empty args should be (void).Yonatan Goldschmidt
2019-12-27ports: Allow overriding CROSS_COMPILE in a custom makefile.David Lechner
2019-12-27py/obj.h: Use 32-bit shift in MP_OBJ_NEW_QSTR calc for obj-repr D.Damien George
2019-12-27py/objstr: Don't use inline GET_STR_DATA_LEN for object-repr D.Damien George
2019-12-27travis: Add stm32 build in nanbox mode.Damien George
2019-12-27stm32: Add configuration to build in nanbox mode.Damien George
2019-12-27stm32: Fix to build in nanbox mode.Damien George
2019-12-27drivers/cyw43: Fix to build in nanbox mode.Damien George
2019-12-27extmod: Fix modbluetooth and modwebrepl to build in nanbox mode.Damien George
2019-12-27py/objobject: Fix __setattr__/__delattr__ to build in nanbox mode.Damien George
2019-12-27py: Introduce MP_ROM_FALSE/MP_ROM_TRUE for ROM to refer to bool objects.Damien George
2019-12-27py: Introduce MP_ROM_NONE macro for ROM to refer to None object.Damien George
2019-12-27py/objsingleton: Use mp_generic_unary_op for singleton objects.Damien George
2019-12-27tests/micropython: Add test for yield-from while heap is locked.Damien George
2019-12-27py/runtime: Don't allocate iter buf for user-defined types.Damien George
2019-12-27travis: Add new job to build and test unix coverage in 32-bit mode.Damien George
2019-12-27tests/extmod: Split out VfsFat finaliser tests to separate test file.Damien George
2019-12-27tests/run-tests: Add "--mpy-cross-flags" arg to specify mpy-cross flags.Damien George