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
2014-04-04
Merge pull request #421 from dhylands/git-version
Damien George
2014-04-04
py: Make False and True act like 0 and 1 for integer arithmetic.
Damien George
2014-04-04
py: Allow dict constructor to take keyword arguments.
Damien George
2014-04-04
py: Remove mp_obj_less (use mp_binary_op(MP_BINARY_OP_LESS..) instead).
Damien George
2014-04-04
Merge pull request #422 from dhylands/str-modulo
Damien George
2014-04-04
py: Enable optimisation of multiplying 2 small ints in compiler.
Damien George
2014-04-04
py: This time, real proper overflow checking of small int power.
Damien George
2014-04-04
py: Add m_malloc_fail function to handle memory allocation error.
Damien George
2014-04-03
Implements most of str.modulo
Dave Hylands
2014-04-03
Add the git version to the banner
Dave Hylands
2014-04-04
py: Handle small int power overflow correctly.
Damien George
2014-04-03
Changes to get unix/ port compiling on Cygwin.
Damien George
2014-04-03
py: Add "io" module.
Paul Sokolovsky
2014-04-03
py: More robust int conversion and overflow checking.
Damien George
2014-04-02
Merge branch 'fix-format-int' of github.com:dhylands/micropython into dhyland...
Damien George
2014-04-02
Fix str.format to work with {:f/g/e} and ints
Dave Hylands
2014-04-02
py: Fix regress for printing of floats and #if.
Damien George
2014-04-02
gc: Uses uint defined in misc.h.
Paul Sokolovsky
2014-04-02
py: Wrap compile_scope_inline_asm in #if; remove comment from misc.h.
Damien George
2014-04-02
py: Fix up so that it can compile without float.
Damien George
2014-04-02
py: Enable a jump optimisation in the compiler.
Damien George
2014-04-02
py: Move to Python 3.4.0 compatibility.
Damien George
2014-04-02
py: Factor out static/class method unwrapping code; add tests.
Damien George
2014-04-02
py: Implement floating point power binop.
Damien George
2014-04-02
py: Allow multiple of str/list/tuple on left by an integer.
Damien George
2014-04-02
py: Add support for sep and end keywords in print.
Damien George
2014-04-01
py: Fix math.{ceil,floor,trunc} to return int.
Damien George
2014-04-01
py: Make pfenv.c conform to code conventions.
Damien George
2014-04-01
Reduce stack usage of pfenv_print_strn
Dave Hylands
2014-04-01
Fix INT_BUF_SIZE to work with 32-bit and 64-bit
Dave Hylands
2014-04-01
py: Remove implicit conversion from int to float.
Damien George
2014-04-01
Enhance str.format support
Dave Hylands
2014-03-31
py: Implement __getattr__.
Damien George
2014-03-31
objstr: Very basic implementation of % string formatting operator.
Paul Sokolovsky
2014-03-31
py: Wrap .__class__ handling in MICROPY_CPYTHON_COMPAT.
Paul Sokolovsky
2014-03-31
objtype: Wrap .__name__ handling in MICROPY_CPYTHON_COMPAT.
Paul Sokolovsky
2014-03-31
py: Fix bug in optimised for .. range.
Damien George
2014-03-31
py: Fix vstr_init for case that alloc = 0.
Damien George
2014-03-31
Merge branch 'master' of github.com:micropython/micropython
Damien George
2014-03-31
py: Remove old "run time" functions that were 1 liners.
Damien George
2014-03-31
py: Disable dump_args function call entirely when not debugging.
Damien George
2014-03-31
objtype: Add virtual __name__ attribute.
Paul Sokolovsky
2014-03-31
mp_resume: Dare to pass send_value of NULL.
Paul Sokolovsky
2014-03-31
mp_resume: Elaborate handling of .throw() for objects which lack it.
Paul Sokolovsky
2014-03-31
objgenerator.throw(GeneratorExit) is not equivalent to .close().
Paul Sokolovsky
2014-03-31
objgenerator: Another obscure case of propagating MP_OBJ_NULL optimization.
Paul Sokolovsky
2014-03-31
py: Towards default keyword arguments.
Damien George
2014-03-31
Merge branch 'master' of github.com:micropython/micropython
Damien George
2014-03-31
py: Add LOAD_NULL bytecode and use it to simplify function calls.
Damien George
2014-03-31
py: Rename and reorder parameters in emit_make_function/closure.
Damien George
[next]