| Age | Commit message (Collapse) | Author |
|
|
|
This patch gets full function argument passing working with native
emitter. Includes named args, keyword args, default args, var args
and var keyword args. Fully Python compliant.
It reuses the bytecode mp_setup_code_state function to do all the hard
work. This function is slightly adjusted to accommodate native calls,
and the native emitter is forced a bit to emit similar prelude and
code-info as bytecode.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Currently supports only x64 and Thumb2 archs.
|
|
|
|
Disabled by default. Enabled on unix and windows ports.
|
|
|
|
This is intended to improve coverage of the test suite.
|
|
|
|
Disabled by default. Enabled on unix and stmhal ports.
|
|
|
|
Mostly to have coverage of newly added code in map.c.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Addresses issue #1154.
|
|
This allows to test options passed to cmdline executable, as well as the
behaviour of the REPL.
|
|
The aim here is to improve coverage of the code.
|
|
|
|
|
|
|
|
See issue #1122.
|
|
|
|
|
|
|
|
|
|
So that navite emitter passes (comprehensions use yield which is not yet
supported by native emitter).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This makes exception traceback info self contained (ie doesn't rely on
list object, which was a bit of a hack), reduces code size, and reduces
RAM footprint of exception by eliminating the list object.
Addresses part of issue #1126.
|
|
|
|
|
|
Issue #1122 should now be fixed.
|
|
|
|
|
|
|
|
|