aboutsummaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2015-07-20py: Make qstr hash size configurable, defaults to 2 bytes.Damien George
2015-07-19modbuiltins: Implement round() to precision.Sebastian Plamauer
2015-07-14py: Improve allocation policy of qstr data.Damien George
2015-07-06py: Prevent many extra vstr allocations.Dave Hylands
2015-07-06py/repl: Fix case where shorter names are shadowed by longer names.Damien George
2015-07-05modstruct: Raise NotImplementedError for unsupported repeat specification.Paul Sokolovsky
2015-07-04extmod: Add a2b_base64 and b2a_base64 functions to ubinascii.Galen Hazelwood
2015-07-02py/objarray.c: Allow to build with debugging and bytearray but no array.Damien George
2015-07-02py: Add TimeoutError exception subclassed from OSError.Daniel Campora
2015-06-29builtinimport: Fix running package submodule with -m.Paul Sokolovsky
2015-06-27builtinimport: Catch case when relative import happens without active package.Paul Sokolovsky
2015-06-27runtime: Improve mp_import_name() debug logging.Paul Sokolovsky
2015-06-26objstr: Add note that replace() is nicely optimized.Paul Sokolovsky
2015-06-25py: Remove mp_load_const_bytes and instead load precreated bytes object.Damien George
2015-06-25py: Remove mp_load_const_str and replace uses with inlined version.Damien George
2015-06-23py: Clarify comment in parsenum.c about ValueError vs SyntaxError.Damien George
2015-06-23py: Change exception type to ValueError when error reporting is terse.Daniel Campora
2015-06-22py: Cast argument for printf to int, to be compatible with more ports.Damien George
2015-06-20py: Use a wrapper to explicitly check self argument of builtin methods.Damien George
2015-06-18py: Make showbc decode UNPACK_EX, and use correct range for unop/binop.Damien George
2015-06-13py: Implement divmod for mpz bignum.Damien George
2015-06-13py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.Damien George
2015-06-13py: Implement second arg for math.log (optional value for base).Damien George
2015-06-11py: Rebuild port if mpconfigport.mk changed (if any).Paul Sokolovsky
2015-06-09py: Support unicode (utf-8 encoded) identifiers in Python source.Damien George
2015-06-08py: Fallback to stack alloca for Python-stack if heap alloc fails.Damien George
2015-06-06unix: Make micropython -m <module> work for frozen modules.Paul Sokolovsky
2015-06-05py: Expose KeyboardInterrupt in builtins module.Damien George
2015-06-04unix: Allow to cat a script into stdin from the command line.Damien George
2015-06-04py: Implement native multiply operation in viper emitter.Damien George
2015-06-04py: Implement implicit cast to obj for viper load/store index/value.Damien George
2015-06-03py: Add stack check to mp_iternext, since it can be called recursively.Damien George
2015-05-31frozenmod: Include header with function prototypes.Paul Sokolovsky
2015-05-30py: Wrap qstr defs in quotes to protect from C preprocessor.Damien George
2015-05-30py/parsenum.c: Rename "raise" func to "raise_exc" to avoid name clash.Damien George
2015-05-30py: Add further autodetection of endianess in mpconfig.h.Damien George
2015-05-30py: Get makeqstrdata.py and makeversionhdr.py running under Python 2.6.Damien George
2015-05-28py: Remove unnecessary extra handling of padding of nan/inf.Damien George
2015-05-28py: Reduce size of mp_printf by eliminating unnecessary code.Damien George
2015-05-25py: Make makeversionhdr.py extract version from docs/conf.py if no git.Damien George
2015-05-24stmhal: Implement sys.std{in,out,err}.buffer, for raw byte mode.Damien George
2015-05-21py: Remove hexdigest QSTR since the method has been removed as well.Daniel Campora
2015-05-20py: Minor improvement to unichar_isxdigitDave Hylands
2015-05-20extmod: Add ubinascii.unhexlifyDave Hylands
2015-05-17py: Implement mp_format_float for doubles and use where appropriatestijn
2015-05-17py/binary: Make return type of mp_binary_get_size size_t instead of int.Kaspar Schleiser
2015-05-17py/objobject: Don't make locals_dict if there's nothing to go in it.Kaspar Schleiser
2015-05-17py: Change _mp_obj_fun_builtin_t.fun to function pointer.Kaspar Schleiser
2015-05-17py: Clean up declarations of str type/funcs that are also in unicode.Damien George
2015-05-13py: Fix printing of complex number when imaginary part is nanstijn