- Jul 19, 2014
-
-
Damien George authored
With unicode enabled, this patch allows reading a fixed number of characters from text-mode streams; eg file.read(5) will read 5 unicode chars, which can made of more than 5 bytes. For an ASCII stream (ie no chars > 127) it only needs to do 1 read. If there are lots of non-ASCII chars in a stream, then it needs multiple reads of the underlying object. Adds a new test for this case. Enables unicode support by default on unix and stmhal ports.
-
Damien George authored
-
- Jul 17, 2014
-
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
Addresses issue #753.
-
Damien George authored
Add teensy core files and use same toolchain as stmhal
-
Damien George authored
Fix teensy to build on latest tree.
-
- Jul 15, 2014
-
-
Dave Hylands authored
-
Dave Hylands authored
Put #include of mpconfig.h before misc.h Replace uses of ARRAY_SIZE with MP_ARRAY_SIZE
-
- Jul 13, 2014
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This method apparently should be part of stream interface.
-
Paul Sokolovsky authored
This script uses expected test results as generated by run-tests --write-exp, and requires only standard unix shell funtionality (no bash). It is useful to run testsuite on embedded systems, where there's no CPython and Bash.
-
Paul Sokolovsky authored
emitnative in particular requires nlr_* to be real functions, so doesn't compile with MICROPY_NLR_SETJMP=1.
-
- Jul 12, 2014
-
-
Paul Sokolovsky authored
Mostly to run testsuite on targets which doesn't have CPython.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
dummy_data field is accessed as uint value (e.g. in emit_write_bytecode_byte_ptr), but is not aligned as such, which causes bus errors or incorrect behavior on any arch requiring strictly aligned data (ARM pre-v7, MIPS, etc, etc).
-
- Jul 10, 2014
-
-
Paul Sokolovsky authored
-
- Jul 09, 2014
-
-
Paul Sokolovsky authored
But much smaller and memory-efficient. Uses Python builtin data structures (dict, tuple, int) to describe structure layout.
-
- Jul 07, 2014
-
-
Damien George authored
-
Damien George authored
-
- Jul 06, 2014
-
-
Dave Hylands authored
Once the code switches to using DMA, this can be removed.
-
- Jul 05, 2014
-
-
Paul Sokolovsky authored
-
Damien George authored
From now on, all new tests must use underscore. Addresses issue #727.
-
Damien George authored
Addresses issue #622.
-
- Jul 03, 2014
-
-
Paul Sokolovsky authored
Implementing it as a static constant is a bit peculiar and require cooperation from long int implementation.
-
Damien George authored
-
Damien George authored
-
Damien George authored
See discussion in issue #50.
-
Damien George authored
qemu: fix typo in readme
-
- Jul 02, 2014
-
-
Ilya Dmitrichenko authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Damien George authored
Added hexfile target
-
Damien George authored
-
Damien George authored
Conflicts: stmhal/pin_named_pins.c stmhal/readline.c Renamed HAL_H to MICROPY_HAL_H. Made stmhal/mphal.h which intends to define the generic Micro Python HAL, which in stmhal sits above the ST HAL.
-
- Jul 01, 2014
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
-