- Jan 11, 2014
-
-
Metallicow authored
License: However you want / MicroPython. Thanks Damien :)
-
- Jan 10, 2014
-
-
Damien George authored
compile_for_stmt_optimised_range(): Properly handle negative & unknown s...
-
Damien George authored
Crude attempt to implement RAISE_VARARGS (with args=1 so far only).
-
Damien George authored
list: Implement list multiplication.
-
Damien George authored
Added dict.fromkeys.
-
Paul Sokolovsky authored
If step is not constant, in first approximation, we can't apply optimization, (well, we could, but need a special case for this).
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
John R. Lenton authored
-
Damien George authored
Fix usart_obj_tx_str
-
mux authored
* Fix usart_obj_tx_str to send the actual string. * Fix issue #126
-
Damien George authored
dict views now, refactoring later.
-
John R. Lenton authored
-
- Jan 09, 2014
-
-
Damien George authored
-
Damien George authored
Add USART Micro Python Bindings
-
Damien George authored
Implement str.strip
-
Damien George authored
Count individual testcases when running tests.
-
Damien George authored
-
Damien George authored
Creating of classes (types) and instances is much more like CPython now. You can use "type('name', (), {...})" to create classes.
-
mux authored
-
mux authored
* Add a DEBUG flag to Makefile, enables: "-O0 -ggdb"
-
mux authored
* Add Micro Python bindings to usart.c * Export USART python object to namespace pyb
-
- Jan 08, 2014
-
-
xbe authored
-
Paul Sokolovsky authored
The idea is simple: each print represents a testcase within a test unit. As we don't have strict rules on which/how many testcase are put into a test file, it's nice to have an idea how many *testcases* we have totally. Would be nice to count how many testcases pass/fail, but that's a bit less trivial.
-
Paul Sokolovsky authored
Use computed string to exercise string interning code better.
-
Damien George authored
Make build output quieter.
-
Damien George authored
-
Dave Hylands authored
Use make V=1e make V=1 or set BUILD_VERBOSE in your environment to increase build verbosity. This should fix issue #117
-
Damien George authored
Addresses issue #104.
-
Damien George authored
Define buffer and stream protocols, and other starting bits of io.* framework, with io.FileIO-like implementation for Unix
-
Damien George authored
Update teemsy/Makefile to use py.mk
-
Damien George authored
Update stm/Makeile to use OBJCOPY and SIZE macros
-
Damien George authored
-
Dave Hylands authored
I also fixed main.c to compile with the new str lexer
-
Dave Hylands authored
While updating the teensy Makfile, I noticed that the stm Makefile was using calling arm-none-eabi-objcopy and size rather than $(OBJCOPY) and $(SIZE), so I added these 2 for consistency.
-
Paul Sokolovsky authored
Note: only read/write/close methods are defined so far, and class is not exposed (use open() factory function, as usual).
-