- Jan 18, 2014
-
-
Damien George authored
Change state layout in VM so the stack starts at state[0] and grows upwards. Locals are at the top end of the state and number downwards. This cleans up a lot of the interface connecting the VM to C: now all functions that take an array of Micro Python objects are in order (ie no longer in reverse). Also clean up C API with keyword arguments (call_n and call_n_kw replaced with single call method that takes keyword arguments). And now make_new takes keyword arguments. emitnative.c has not yet been changed to comply with the new order of stack layout.
-
- Jan 17, 2014
-
-
Damien George authored
Python long int implementation using C long long
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Jan 16, 2014
-
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
Improve compatibility of examples with CPython (+ interp compatibility too)
-
Paul Sokolovsky authored
Implicit "micropython" module contains (at least) codegeneration decorators. Make it explicit, so an app could have "import micropython". On MicroPython, that will be no-op. On CPython, that will give a chance to have a module with placeholder decorators.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Delay between frames; run more generations.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Per Python3 io module semantics.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
That at least makes stuff like "{:x}".format(1) to produce not completely broken output.
-
- Jan 15, 2014
-
-
Damien George authored
-
Damien George authored
-
Damien George authored
Conflicts: py/objint.c unix-cpy/Makefile unix/Makefile
-
Damien George authored
Conflicts: tests/basics/tests/exception1.py
-
Damien George authored
Added some checks for number of arguments. Conflicts: py/mpqstrraw.h
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
Parser no longer prints an error, but instead returns an exception ID and message.
-
xyb authored
-
xyb authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
- Jan 14, 2014
-
-
John R. Lenton authored
-
Damien George authored
-
John R. Lenton authored
-
Damien George authored
made DEBUG control CFLAGS in Makefiles other than stm as well.
-
Damien George authored
Thanks to Dave Hylands for this.
-
Damien George authored
Add combined image to GitHub front page README.md
-
Damien George authored
Add missing ADC driver
-
Damien George authored
Generic implementation if stream readall() method, immediately reused in unix io.FileIO implementation
-
Damien George authored
Move towards Python-compliant interface of exceptions
-