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
/
tests
/
cmdline
/
cmd_showbc.py.exp
Age
Commit message (
Expand
)
Author
2020-03-30
tests: Format all Python code with black, except tests in basics subdir.
David Lechner
2019-10-04
py/compile: Disallow 'import *' outside module level.
Petr Viktorin
2019-10-01
py: Rework and compress second part of bytecode prelude.
Damien George
2019-09-26
py: Split RAISE_VARARGS opcode into 3 separate ones.
Damien George
2019-09-26
tests: Update tests for changes to opcode ordering.
Damien George
2019-09-26
py: Add support for matmul operator @ as per PEP 465.
Damien George
2019-08-30
tests: Add tests for sys.settrace feature.
Milan Rossa
2019-08-19
py/compile: Improve the line numbering precision for comprehensions.
Milan Rossa
2019-03-05
py: Replace POP_BLOCK and POP_EXCEPT opcodes with POP_EXCEPT_JUMP.
Damien George
2019-03-05
py: Fix VM crash with unwinding jump out of a finally block.
Damien George
2017-10-05
py: Clean up unary and binary enum list to keep groups together.
Damien George
2017-09-25
py: Clarify which mp_unary_op_t's may appear in the bytecode.
Paul Sokolovsky
2017-09-08
py/runtime0.h: Put inplace arith ops in front of normal operations.
Paul Sokolovsky
2017-09-07
py/runtime0.h: Move MP_BINARY_OP_DIVMOD to the end of mp_binary_op_t.
Paul Sokolovsky
2017-09-07
py/runtime0.h: Move relational ops to the beginning of mp_binary_op_t.
Paul Sokolovsky
2017-04-22
tests: Add tests for calling super and loading a method directly.
Damien George
2017-02-16
tests/cmdline/cmd_showbc: Update to work with recent changes.
Damien George
2017-02-16
tests/cmdline: Update tests to pass with latest changes to bytecode.
Damien George
2017-02-16
py: Allow bytecode/native to put iter_buf on stack for simple for loops.
Damien George
2016-10-17
tests/cmdline: Improve coverage test for printing bytecode.
Damien George
2016-10-05
tests: Fix expected output of verbose cmdline test
stijn
2016-09-27
tests/cmdline/cmd_showbc: Fix test now that 1 value is stored on stack.
Damien George
2016-09-20
tests: Get cmdline verbose tests running again.
Damien George
2015-06-25
py: Remove mp_load_const_bytes and instead load precreated bytes object.
Damien George
2015-06-13
py: Add MP_BINARY_OP_DIVMOD to simplify and consolidate divmod builtin.
Damien George
2015-05-12
py: Convert hash API to use MP_UNARY_OP_HASH instead of ad-hoc function.
Damien George
2015-05-06
py: Fix naming of function arguments when function is a closure.
Damien George
2015-05-05
tests: Fix cmd_showbc now that LOAD_CONST_ELLIPSIS bytecode is gone.
Damien George
2015-04-24
py: Modify bytecode "with" behaviour so it doesn't use any heap.
Damien George
2015-04-07
py: Simplify bytecode prelude when encoding closed over variables.
Damien George
2015-03-20
tests: Make cmdline tests more stable by using regex for matching.
Damien George
2015-03-14
tests: Don't try to verify amount of memory used in cmd_showbc test.
Damien George
2015-03-14
tests: Add cmdline test to test showbc code.
Damien George