aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
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-31Fix part->port in README.Damien George
2014-03-31Merge pull request #404 from jonmills/patch-1Damien George
2014-03-31Merge branch 'master' of github.com:micropython/micropythonDamien George
2014-03-31py: Fix bug in optimised for .. range.Damien George
2014-03-31tests: Add testcase for multiple inheritance.Paul Sokolovsky
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-31Update README.mdjon mills
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
2014-03-30py: Implement support for generalized generator protocol.Paul Sokolovsky
2014-03-30objzip: Use mp_identity().Paul Sokolovsky
2014-03-30py: Implement positional and keyword args via * and **.Damien George
2014-03-30Merge pull request #396 from pfalcon/call-starDamien George
2014-03-30objgenerator: Handle default args to generator functions.Paul Sokolovsky
2014-03-30vm: Implement DELETE_FAST_N bytecode.Paul Sokolovsky
2014-03-30vm: Implement CALL_FUNCTION_VAR opcode (foo(*(1, 2, 3))).Paul Sokolovsky
2014-03-30showbc: Dump all CALL_FUNCTION_* and CALL_METHOD_* opcodes.Paul Sokolovsky
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-30stmhal: Unify naming of HW config; make SD detect configurable.Damien George
2014-03-30objexcept: Fix another place missing proper args tuple initialization.Paul Sokolovsky
2014-03-30objgenerator.throw: Instantiate if exception type passed, just as "raise".Paul Sokolovsky
2014-03-30objgenerator.throw(): Throwing GeneratorExit is equivalent to .close().Paul Sokolovsky
2014-03-30objgenerator: Store proper code_info pointer.Paul Sokolovsky