summaryrefslogtreecommitdiff
path: root/py
AgeCommit message (Expand)Author
2014-04-03py: Add "io" module.Paul Sokolovsky
2014-04-03py: More robust int conversion and overflow checking.Damien George
2014-04-02Merge branch 'fix-format-int' of github.com:dhylands/micropython into dhyland...Damien George
2014-04-02Fix str.format to work with {:f/g/e} and intsDave Hylands
2014-04-02py: Fix regress for printing of floats and #if.Damien George
2014-04-02gc: Uses uint defined in misc.h.Paul Sokolovsky
2014-04-02py: Wrap compile_scope_inline_asm in #if; remove comment from misc.h.Damien George
2014-04-02py: Fix up so that it can compile without float.Damien George
2014-04-02py: Enable a jump optimisation in the compiler.Damien George
2014-04-02py: Move to Python 3.4.0 compatibility.Damien George
2014-04-02py: Factor out static/class method unwrapping code; add tests.Damien George
2014-04-02py: Implement floating point power binop.Damien George
2014-04-02py: Allow multiple of str/list/tuple on left by an integer.Damien George
2014-04-02py: Add support for sep and end keywords in print.Damien George
2014-04-01py: Fix math.{ceil,floor,trunc} to return int.Damien George
2014-04-01py: Make pfenv.c conform to code conventions.Damien George
2014-04-01Reduce stack usage of pfenv_print_strnDave Hylands
2014-04-01Fix INT_BUF_SIZE to work with 32-bit and 64-bitDave Hylands
2014-04-01py: Remove implicit conversion from int to float.Damien George
2014-04-01Enhance str.format supportDave Hylands
2014-03-31py: Implement __getattr__.Damien George
2014-03-31objstr: Very basic implementation of % string formatting operator.Paul Sokolovsky
2014-03-31py: Wrap .__class__ handling in MICROPY_CPYTHON_COMPAT.Paul Sokolovsky
2014-03-31objtype: Wrap .__name__ handling in MICROPY_CPYTHON_COMPAT.Paul Sokolovsky
2014-03-31py: Fix bug in optimised for .. range.Damien George
2014-03-31py: Fix vstr_init for case that alloc = 0.Damien George
2014-03-31Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-31py: Remove old "run time" functions that were 1 liners.Damien George
2014-03-31py: Disable dump_args function call entirely when not debugging.Damien George
2014-03-31objtype: Add virtual __name__ attribute.Paul Sokolovsky
2014-03-31mp_resume: Dare to pass send_value of NULL.Paul Sokolovsky
2014-03-31mp_resume: Elaborate handling of .throw() for objects which lack it.Paul Sokolovsky
2014-03-31objgenerator.throw(GeneratorExit) is not equivalent to .close().Paul Sokolovsky
2014-03-31objgenerator: Another obscure case of propagating MP_OBJ_NULL optimization.Paul Sokolovsky
2014-03-31py: Towards default keyword arguments.Damien George
2014-03-31Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-31py: Add LOAD_NULL bytecode and use it to simplify function calls.Damien George
2014-03-31py: Rename and reorder parameters in emit_make_function/closure.Damien George
2014-03-31py: Properly implement divide-by-zero handling.Paul Sokolovsky
2014-03-31objfloat: Quick&dirty implementation of float floor division.Paul Sokolovsky
2014-03-31compile: Don't try to constant-fold division by zero.Paul Sokolovsky
2014-03-31objfloat: Make sure that floats always have dot (for C "double" type case).Paul Sokolovsky
2014-03-31objfloat: Missing default: caused incorrect results for unimplemented ops.Paul Sokolovsky
2014-03-31objexcept: No more magic messages in exceptions, only exception arguments.Paul Sokolovsky
2014-03-30py: Add equality test for None object.Damien George
2014-03-30py: Add explicit conversion from float to int via int().Damien George
2014-03-30py: Fix bug in compiler for empty class bases.Damien George
2014-03-30py: Don't wrap necessary function calls in assert.Damien George
2014-03-30Merge pull request #399 from pfalcon/gen-defargsDamien George
2014-03-30py: Fix "TypeError: 'iterator' object is not iterable", doh.Paul Sokolovsky