aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-03-29py/compile: Provide terse error message for invalid dict/set literals.Damien George
2017-03-29py: Shorten a couple of error messages.Damien George
2017-03-29py/compile: Simplify syntax-error messages for illegal assignments.Damien George
2017-03-29py/lexer: Simplify and reduce code size for operator tokenising.Damien George
2017-03-29zephyr/prj_base.conf: Enable TCP (and UDP explicitly).Paul Sokolovsky
2017-03-28py: Use mp_raise_TypeError/mp_raise_ValueError helpers where possible.Damien George
2017-03-28stmhal/dma: Fix reinitialisation of DMA on F7 MCUs, following F4.Damien George
2017-03-28stmhal/hal: For F7 MCUs, expose DMA_CalcBaseAndBitshift function.Damien George
2017-03-28stmhal/spi: Clean and/or invalidate D-cache before SPI DMA transfers.Damien George
2017-03-28stmhal/board: Fix existing and add more pin defs for NUCLEO_F767ZI.Damien George
2017-03-28stmhal/boards: Fix alt-func config for PA5 of STM32F767.Damien George
2017-03-27zephyr/prj_base.conf: Disable legacy kernel compatibility.Paul Sokolovsky
2017-03-27py/objmap: Convert mp_uint_t to size_t.Damien George
2017-03-27esp8266/modesp: Remove long-obsolete and unused espconn bindings.Damien George
2017-03-27tests/basics: Add test for super() when self is closed over.Damien George
2017-03-27py/compile: When compiling super(), handle closed-over self variable.Damien George
2017-03-27py/vm: Fix VM opcode tracing to print correct stack pointer.Damien George
2017-03-27zephyr/zephyr_getchar: Use native k_sem instead of legacy nano_sem.Paul Sokolovsky
2017-03-26py/obj: Change mp_uint_t to size_t for mp_obj_get_array_fixed_n len arg.Damien George
2017-03-26esp8266/modesp: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-26extmod/modlwip: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-26README: Change Travis & Coveralls badges to not use link references.Damien George
2017-03-26py/nlrx86: Better check for Zephyr (requires 1.7).Paul Sokolovsky
2017-03-25README: Describe extmod/ dir.Paul Sokolovsky
2017-03-25README: Add link to docs.micropython.org.Paul Sokolovsky
2017-03-25unix: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-25py/objarray: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-24py: Remove MP_STATE_CTX, use MP_STATE_THREAD instead (it's an alias).Damien George
2017-03-24py: Use mp_locals/mp_globals accessor funcs instead of MP_STATE_CTX.Damien George
2017-03-24py/objnamedtuple: Use size_t where appropriate, instead of mp_uint_t.Damien George
2017-03-24py/objtype: Use size_t where appropriate, instead of mp_uint_t or uint.Damien George
2017-03-24tests/float: Add tests for round() of inf, nan and large number.Damien George
2017-03-24py/modbuiltins: Allow round() to return a big int if necessary.Damien George
2017-03-24py/modbuiltins: For round() builtin use nearbyint instead of round.Damien George
2017-03-24lib/libm: Add implementation of nearbyintf, from musl-1.1.16.Damien George
2017-03-23tests/float: Add tests for math funcs that return ints.Damien George
2017-03-23py/objint: Handle special case of -0 when classifying fp as int.Damien George
2017-03-23py/modmath: Allow trunc/ceil/floor to return a big int if necessary.Damien George
2017-03-23py/lexer: Remove obsolete comment, since lexer can now raise exceptions.Damien George
2017-03-23py: Define and use MP_OBJ_ITER_BUF_NSLOTS to get size of stack iter buf.Damien George
2017-03-23py/sequence: Convert mp_uint_t to size_t where appropriate.Damien George
2017-03-23py: Use size_t as len argument and return type of mp_get_index.Damien George
2017-03-23msvc: Remove directory with generated files when cleaning.stijn
2017-03-23windows: Make msvc project file support any version from VS2013 to VS2017stijn
2017-03-23minimal/Makefile: Change C standard from gnu99 to c99.Damien George
2017-03-23bare-arm/Makefile: Change C standard from gnu99 to c99.Damien George
2017-03-23all/Makefile: Remove -ansi from GCC flags, its ignored anyway.Krzysztof Blazewicz
2017-03-22tests/heapalloc_str: Test no-replacement case for str.replace().Paul Sokolovsky
2017-03-22py/bc: Provide better error message for an unexpected keyword argument.Damien George
2017-03-22cc3200/mods/modutime: Use generic sleep_ms and sleep_us implementations.Damien George