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-03-30
py: Fix bug in compiler for empty class bases.
Damien George
2014-03-30
py: Don't wrap necessary function calls in assert.
Damien George
2014-03-30
Merge pull request #399 from pfalcon/gen-defargs
Damien George
2014-03-30
py: Fix "TypeError: 'iterator' object is not iterable", doh.
Paul Sokolovsky
2014-03-30
py: Implement support for generalized generator protocol.
Paul Sokolovsky
2014-03-30
objzip: Use mp_identity().
Paul Sokolovsky
2014-03-30
py: Implement positional and keyword args via * and **.
Damien George
2014-03-30
Merge pull request #396 from pfalcon/call-star
Damien George
2014-03-30
objgenerator: Handle default args to generator functions.
Paul Sokolovsky
2014-03-30
vm: Implement DELETE_FAST_N bytecode.
Paul Sokolovsky
2014-03-30
vm: Implement CALL_FUNCTION_VAR opcode (foo(*(1, 2, 3))).
Paul Sokolovsky
2014-03-30
showbc: Dump all CALL_FUNCTION_* and CALL_METHOD_* opcodes.
Paul Sokolovsky
2014-03-30
Merge map.h into obj.h.
Damien George
2014-03-30
Rename rt_* to mp_*.
Damien George
2014-03-30
objexcept: Fix another place missing proper args tuple initialization.
Paul Sokolovsky
2014-03-30
objgenerator.throw: Instantiate if exception type passed, just as "raise".
Paul Sokolovsky
2014-03-30
objgenerator.throw(): Throwing GeneratorExit is equivalent to .close().
Paul Sokolovsky
2014-03-30
objgenerator: Store proper code_info pointer.
Paul Sokolovsky
2014-03-30
objgenerator: mp_obj_gen_resume() suitable only for generators.
Paul Sokolovsky
2014-03-30
compile: Print error messages on unimplemented relative imports.
Paul Sokolovsky
2014-03-30
mp_obj_print_exception(): Assert that traceback has sane number of entries.
Paul Sokolovsky
2014-03-30
py: Rename mp_exc_stack to mp_exc_stack_t.
Damien George
2014-03-30
py: Fix reraise logic.
Damien George
2014-03-30
vm: Save current active exception on opening new try block.
Paul Sokolovsky
2014-03-30
vm: WITH_CLEANUP: use POP_EXC_BLOCK().
Paul Sokolovsky
2014-03-29
vm: Establish macros PUSH_EXC_BLOCK & POP_EXC_BLOCK to deal with exc stack.
Paul Sokolovsky
2014-03-29
py: Reraising exception possible only in except block.
Paul Sokolovsky
2014-03-29
Merge branch 'master' of github.com:micropython/micropython
Damien George
2014-03-29
py: Support mpz -op- float, mpz -op- complex, and complex -op- mpz.
Damien George
2014-03-29
vm: Elaborate comments for WITH_CLEANUP, other cosmetic fixes.
Paul Sokolovsky
2014-03-29
py: Make MP_BC_SETUP_WITH use the bytecode stack for load_method.
Damien George
2014-03-29
Merge pull request #389 from pfalcon/with-statement
Damien George
2014-03-29
py: Fix regress with GeneratorExit object becoming truly const.
Damien George
2014-03-29
py: Rename old const type objects to mp_type_* for consistency.
Damien George
2014-03-29
py: Change mp_const_* objects to macros.
Damien George
2014-03-29
Merge pull request #383 from pfalcon/yield-from
Damien George
2014-03-29
py: Fix typo printing complex numbers that are purely imaginary.
Damien George
2014-03-29
py: Free unique_code slot for outer module.
Damien George
2014-03-29
vm: Implement "with" statement (SETUP_WITH and WITH_CLEANUP bytecodes).
Paul Sokolovsky
2014-03-29
vm: Make sure that exception triple is <type, instance, traceback>.
Paul Sokolovsky
2014-03-29
vm: Factor out exception block setup to a macro.
Paul Sokolovsky
2014-03-29
Merge pull request #382 from pfalcon/genexit-inst
Damien George
2014-03-28
py: Fix bugs with debugging output.
Damien George
2014-03-28
py: yield from: Elaborate GeneratorExit (gen.close()) handling.
Paul Sokolovsky
2014-03-28
py: Core "yield from" implementation.
Paul Sokolovsky
2014-03-28
objgenerator: close(): Throw instance of GeneratorExit (not type).
Paul Sokolovsky
2014-03-28
showbc: Add few bytecodes related to "with".
Paul Sokolovsky
2014-03-27
py: Thin out predefined exceptions.
Damien George
2014-03-27
py: Fix typo printing complex numbers.
Damien George
2014-03-27
py: Rename emit_pre so they have globally unique names.
Damien George
[next]