aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2016-09-30py/objbool: Defer bool's unary op implementation to small int.Damien George
2016-09-30py/argcheck: Simplify if-chain so that the last one is the default.Damien George
2016-09-30py/compile: Fix typo when checking for parse-node kind.Damien George
2016-09-30py/scope: Factor common code to find locals and close over them.Damien George
2016-09-30py/scope: Shrink scope_t struct by 1 machine word.Damien George
2016-09-30py/scope: Use lookup-table to determine a scope's simple name.Damien George
2016-09-28py/compile: Fix async-for/async-with to work with simpler exc on stack.Damien George
2016-09-28py/objset: Ensure that use of frozenset.update raises an exception.Damien George
2016-09-28py/objset: Use mp_check_self() to check args of set/frozenset methods.Damien George
2016-09-27py/objfun: Use if instead of switch to check return value of VM execute.Damien George
2016-09-27py/objfun: Remove unnecessary check for viper fun with 5 or more args.Damien George
2016-09-27py/emitbc: Remove/refactor unreachable code, to improve coverage.Damien George
2016-09-27py/objstr: Remove unreachable function used only for terse error msgs.Damien George
2016-09-27py/modmicropython: Add micropython.const, alias for identity function.Damien George
2016-09-27py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object.Damien George
2016-09-27py: Only store the exception instance on Py stack in bytecode try block.Damien George
2016-09-23py/py.mk: Add support for building modussl_mbedtls.Paul Sokolovsky
2016-09-23py/parse: Only replace constants that are standalone identifiers.Damien George
2016-09-23py: Update opcode format table because 3 opcodes were removed, 1 added.Damien George
2016-09-23py: Shrink mp_arg_t struct by using reduced-size integer members.Damien George
2016-09-22py/py.mk: Suppress some compiler warnings when building berkeley-db.Damien George
2016-09-22py/stream: Remove unnecessary check for NULL return from vstr_extend.Damien George
2016-09-22all: Remove 'name' member from mp_obj_module_t struct.Damien George
2016-09-20py/builtinimport: Fix nanbox build after change to better handle -m modules.Paul Sokolovsky
2016-09-20builtinimport: add the module specified by -m to sys.modules as '__main__'Delio Brignoli
2016-09-20py/showbc: Make printf's go to the platform print stream.Damien George
2016-09-19py/qstr: Remove a comment.Damien George
2016-09-19py/objnone: Use mp_generic_unary_op instead of custom one.Damien George
2016-09-19py/vstr: Remove vstr.had_error flag and inline basic vstr functions.Damien George
2016-09-19py: Combine 3 comprehension opcodes (list/dict/set) into 1.Damien George
2016-09-19py: Combine 3 comprehension emit functions (list/dict/set) into 1.Damien George
2016-09-17py: Move frozen modules rules from esp8266 port for reuse across ports.Paul Sokolovsky
2016-09-16py/objnone: Remove unnecessary handling of MP_UNARY_OP_BOOL.Damien George
2016-09-09py/makeqstrdefs.py: Use python 2.6 syntax for set creation.Chris Packham
2016-09-09py/asmthumb: Flush D-cache, and invalidate I-cache on STM32F7.Antonin ENFRUN
2016-09-05py: Add MICROPY_USE_INTERNAL_PRINTF option, defaults to enabled.Delio Brignoli
2016-09-04py/emitglue.c: provide mp_raw_code_load_file for any unix architectureChris Packham
2016-09-02py: If str/bytes hash is 0 then explicitly compute it.Damien George
2016-09-02py/makeqstrdata.py: Compute the qstr hash from bytes, not characters.Damien George
2016-09-01py/mpprint: Fail an assertion with unsupported format specifiers.Delio Brignoli
2016-09-01extmod: Add machine_spi with generic SPI C-protocol and helper methods.Damien George
2016-08-30py/mkrules.mk: Allow to override name of libmicropython.aPaul Sokolovsky
2016-08-27py/bc.h: Rename _mp_code_state to _mp_code_state_t.Damien George
2016-08-27py: Rename struct mp_code_state to mp_code_state_t.Damien George
2016-08-26py/emitglue: Use more compact mp_raise_ValueError function.Damien George
2016-08-26py/modstruct: Use more compact mp_raise_ValueError function.Damien George
2016-08-26py/compile: Don't compile assert statements when optimisations enabled.Damien George
2016-08-26py/gc: Add MICROPY_GC_CONSERVATIVE_CLEAR option to always zero memory.Damien George
2016-08-24extmod/modubinascii: Make crc32() support configurable.Paul Sokolovsky
2016-08-24py/stream.c: use mp_obj_get_type in mp_get_stream_raiseKrzysztof Blazewicz