index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
py
Age
Commit message (
Expand
)
Author
2016-10-24
py: Add "delattr" builtin, conditional on MICROPY_CPYTHON_COMPAT.
Damien George
2016-10-24
py/modbuiltins: Add builtin "slice", pointing to existing slice type.
Damien George
2016-10-22
py/{modbuiltins,obj}: Use MP_PYTHON_PRINTER where possible.
Paul Sokolovsky
2016-10-21
lib/utils/pyhelp.c: Use mp_printf() instead of printf()
Erik Moqvist
2016-10-21
py: Specialise builtin funcs to use separate type for fixed arg count.
Damien George
2016-10-21
py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.
Damien George
2016-10-21
py/py.mk: Automatically add frozen.c to source list if FROZEN_DIR is defined.
Paul Sokolovsky
2016-10-17
py: Use mp_raise_msg helper function where appropriate.
Damien George
2016-10-17
py/objdict: Actually provide the key that failed in KeyError exception.
Damien George
2016-10-17
py/objdict: Fix optimisation for allocating result in fromkeys.
Damien George
2016-10-14
extmod/utime_mphal: Factor out implementations in terms of mp_hal_* for reuse.
Paul Sokolovsky
2016-10-14
py/vstr: Combine vstr_new_size with vstr_new since they are rarely used.
Damien George
2016-10-13
extmod/modujson: Implement ujson.load() to load JSON from a stream.
Damien George
2016-10-12
esp8266: Enable importing of precompiled .mpy files.
Damien George
2016-10-12
py/lexer: Remove unnecessary code, and unreachable code.
Damien George
2016-10-12
py/compile: Remove debugging code for compiler dispatch.
Damien George
2016-10-11
py/objint: Use size_t for arguments that measure bytes/sizes.
Damien George
2016-10-11
py: Factor duplicated function to calculate size of formatted int.
Damien George
2016-10-11
py/mpz: Use assert to verify mpz does not have a fixed digit buffer.
Damien George
2016-10-11
py/mpz: In divmod, replace check for rhs!=0 with assert.
Damien George
2016-10-11
py/compile: Remove unreachable code.
Damien George
2016-10-11
py/modmicropython: Add micropython.opt_level([value]) function.
Damien George
2016-10-09
py/objstringio: Add readinto() method.
Paul Sokolovsky
2016-10-07
py: Add mp_raise_OSError(errno) helper function.
Damien George
2016-10-07
py/modstruct: Remove unreachable code, and add comment about CPy diff.
Damien George
2016-09-30
py/objbool: Make a slight simplification of bool constructor.
Damien George
2016-09-30
py/objbool: Defer bool's unary op implementation to small int.
Damien George
2016-09-30
py/argcheck: Simplify if-chain so that the last one is the default.
Damien George
2016-09-30
py/compile: Fix typo when checking for parse-node kind.
Damien George
2016-09-30
py/scope: Factor common code to find locals and close over them.
Damien George
2016-09-30
py/scope: Shrink scope_t struct by 1 machine word.
Damien George
2016-09-30
py/scope: Use lookup-table to determine a scope's simple name.
Damien George
2016-09-28
py/compile: Fix async-for/async-with to work with simpler exc on stack.
Damien George
2016-09-28
py/objset: Ensure that use of frozenset.update raises an exception.
Damien George
2016-09-28
py/objset: Use mp_check_self() to check args of set/frozenset methods.
Damien George
2016-09-27
py/objfun: Use if instead of switch to check return value of VM execute.
Damien George
2016-09-27
py/objfun: Remove unnecessary check for viper fun with 5 or more args.
Damien George
2016-09-27
py/emitbc: Remove/refactor unreachable code, to improve coverage.
Damien George
2016-09-27
py/objstr: Remove unreachable function used only for terse error msgs.
Damien George
2016-09-27
py/modmicropython: Add micropython.const, alias for identity function.
Damien George
2016-09-27
py/vm: Use MP_OBJ_FROM_PTR to cast a type to an object.
Damien George
2016-09-27
py: Only store the exception instance on Py stack in bytecode try block.
Damien George
2016-09-23
py/py.mk: Add support for building modussl_mbedtls.
Paul Sokolovsky
2016-09-23
py/parse: Only replace constants that are standalone identifiers.
Damien George
2016-09-23
py: Update opcode format table because 3 opcodes were removed, 1 added.
Damien George
2016-09-23
py: Shrink mp_arg_t struct by using reduced-size integer members.
Damien George
2016-09-22
py/py.mk: Suppress some compiler warnings when building berkeley-db.
Damien George
2016-09-22
py/stream: Remove unnecessary check for NULL return from vstr_extend.
Damien George
2016-09-22
all: Remove 'name' member from mp_obj_module_t struct.
Damien George
2016-09-20
py/builtinimport: Fix nanbox build after change to better handle -m modules.
Paul Sokolovsky
[next]