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
2015-06-27
runtime: Improve mp_import_name() debug logging.
Paul Sokolovsky
2015-06-26
objstr: Add note that replace() is nicely optimized.
Paul Sokolovsky
2015-06-25
py: Remove mp_load_const_bytes and instead load precreated bytes object.
Damien George
2015-06-25
py: Remove mp_load_const_str and replace uses with inlined version.
Damien George
2015-06-23
py: Clarify comment in parsenum.c about ValueError vs SyntaxError.
Damien George
2015-06-23
py: Change exception type to ValueError when error reporting is terse.
Daniel Campora
2015-06-22
py: Cast argument for printf to int, to be compatible with more ports.
Damien George
2015-06-20
py: Use a wrapper to explicitly check self argument of builtin methods.
Damien George
2015-06-18
py: Make showbc decode UNPACK_EX, and use correct range for unop/binop.
Damien George
2015-06-13
py: Implement divmod for mpz bignum.
Damien George
2015-06-13
py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
Damien George
2015-06-13
py: Implement second arg for math.log (optional value for base).
Damien George
2015-06-11
py: Rebuild port if mpconfigport.mk changed (if any).
Paul Sokolovsky
2015-06-09
py: Support unicode (utf-8 encoded) identifiers in Python source.
Damien George
2015-06-08
py: Fallback to stack alloca for Python-stack if heap alloc fails.
Damien George
2015-06-06
unix: Make micropython -m <module> work for frozen modules.
Paul Sokolovsky
2015-06-05
py: Expose KeyboardInterrupt in builtins module.
Damien George
2015-06-04
unix: Allow to cat a script into stdin from the command line.
Damien George
2015-06-04
py: Implement native multiply operation in viper emitter.
Damien George
2015-06-04
py: Implement implicit cast to obj for viper load/store index/value.
Damien George
2015-06-03
py: Add stack check to mp_iternext, since it can be called recursively.
Damien George
2015-05-31
frozenmod: Include header with function prototypes.
Paul Sokolovsky
2015-05-30
py: Wrap qstr defs in quotes to protect from C preprocessor.
Damien George
2015-05-30
py/parsenum.c: Rename "raise" func to "raise_exc" to avoid name clash.
Damien George
2015-05-30
py: Add further autodetection of endianess in mpconfig.h.
Damien George
2015-05-30
py: Get makeqstrdata.py and makeversionhdr.py running under Python 2.6.
Damien George
2015-05-28
py: Remove unnecessary extra handling of padding of nan/inf.
Damien George
2015-05-28
py: Reduce size of mp_printf by eliminating unnecessary code.
Damien George
2015-05-25
py: Make makeversionhdr.py extract version from docs/conf.py if no git.
Damien George
2015-05-24
stmhal: Implement sys.std{in,out,err}.buffer, for raw byte mode.
Damien George
2015-05-21
py: Remove hexdigest QSTR since the method has been removed as well.
Daniel Campora
2015-05-20
py: Minor improvement to unichar_isxdigit
Dave Hylands
2015-05-20
extmod: Add ubinascii.unhexlify
Dave Hylands
2015-05-17
py: Implement mp_format_float for doubles and use where appropriate
stijn
2015-05-17
py/binary: Make return type of mp_binary_get_size size_t instead of int.
Kaspar Schleiser
2015-05-17
py/objobject: Don't make locals_dict if there's nothing to go in it.
Kaspar Schleiser
2015-05-17
py: Change _mp_obj_fun_builtin_t.fun to function pointer.
Kaspar Schleiser
2015-05-17
py: Clean up declarations of str type/funcs that are also in unicode.
Damien George
2015-05-13
py: Fix printing of complex number when imaginary part is nan
stijn
2015-05-12
py: Add mp_obj_get_int_truncated and use it where appropriate.
Damien George
2015-05-12
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
Damien George
2015-05-11
vm: Properly handle StopIteration raised in user instance iterator.
Paul Sokolovsky
2015-05-11
objgenerator: Can optimize StopIteration to STOP_ITERATION only if arg is None.
Paul Sokolovsky
2015-05-11
objgenerator: If generator yielded STOP_ITERATION value, it's stopped.
Paul Sokolovsky
2015-05-10
vm: Null pointer test when checking for StopIteration optimizations.
Paul Sokolovsky
2015-05-10
runtime: Add TODO for mp_resume() on handling .close().
Paul Sokolovsky
2015-05-10
py: iternext() may not return MP_OBJ_NULL, only MP_OBJ_STOP_ITERATION.
Paul Sokolovsky
2015-05-08
emitnative: Revamp ARM codegen compile after full-arg support refactors.
Paul Sokolovsky
2015-05-06
unix-cpy: Fix adjustment of stack size when leaving exception handler.
Damien George
2015-05-06
py: Fix naming of function arguments when function is a closure.
Damien George
[prev]
[next]