- 25 Jan, 2014 2 commits
-
-
Dave Hylands authored
The problem manifests itself in make 4.0 I also fixed the LINK message when linking the final executable for unix and unix-cpy.
-
Damien George authored
Addresses Issue #203.
-
- 24 Jan, 2014 1 commit
-
-
Dave Hylands authored
-
- 21 Jan, 2014 1 commit
-
-
Damien George authored
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h
-
- 20 Jan, 2014 2 commits
-
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
These are micropython.mem_total(), .mem_current(), .mem_peak(). These are 3 individual functions with simple scalar return value to make sure that calls to these functions themselves have minimal (hopefully zero) impact on memory allocation.
-
- 18 Jan, 2014 1 commit
-
-
Paul Sokolovsky authored
So far, only storage, initialization, repr() and buffer protocol is implemented - alredy suitable for passing binary data around.
-
- 17 Jan, 2014 1 commit
-
-
Paul Sokolovsky authored
-
- 15 Jan, 2014 3 commits
-
-
Damien George authored
-
John R. Lenton authored
-
John R. Lenton authored
-
- 14 Jan, 2014 2 commits
-
-
John R. Lenton authored
-
xyb authored
-
- 13 Jan, 2014 1 commit
-
-
John R. Lenton authored
-
- 09 Jan, 2014 1 commit
-
-
Damien George authored
Creating of classes (types) and instances is much more like CPython now. You can use "type('name', (), {...})" to create classes.
-
- 08 Jan, 2014 3 commits
-
-
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
-
Paul Sokolovsky authored
These can be used for any object which implements stream protocol (mp_stream_p_t).
-
Damien George authored
-
- 07 Jan, 2014 2 commits
-
-
John R. Lenton authored
-
Damien George authored
-
- 04 Jan, 2014 4 commits
-
-
Damien George authored
Now much more inline with how CPython does types.
-
Paul Sokolovsky authored
-
Damien George authored
With MICROPY_EMIT_X64 and MICROPY_EMIT_THUMB disabled, the respective emitters and assemblers will not be included in the code. This can significantly reduce binary size for unix version.
-
Paul Sokolovsky authored
So far, only start and stop integer indexes are supported. Step is not supported, as well as objects of arbitrary types.
-
- 03 Jan, 2014 2 commits
-
-
Paul Sokolovsky authored
mpconfig.h will automatically pull mpconfigport.h.
-
Damien George authored
import works for simple cases. Still work to do on finding the right script, and setting globals/locals correctly when running an imported function.
-
- 02 Jan, 2014 2 commits
-
-
Damien George authored
-
Damien George authored
termcap is not needed on Linux. Need to work out how to automatically configure the Makefile...
-
- 01 Jan, 2014 2 commits
-
-
Edd Barrett authored
E.g.: /usr/lib/libreadline.so.4.0: undefined reference to `tgetnum' /usr/lib/libreadline.so.4.0: undefined reference to `tgoto' /usr/lib/libreadline.so.4.0: undefined reference to `tgetflag' /usr/lib/libreadline.so.4.0: undefined reference to `tputs' /usr/lib/libreadline.so.4.0: undefined reference to `tgetent' /usr/lib/libreadline.so.4.0: undefined reference to `tgetstr' Tested on linux too, works.
-
Paul Sokolovsky authored
Readline is GPL, so linking with it casts the binary GPL.
-
- 30 Dec, 2013 4 commits
-
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
-
- 29 Dec, 2013 2 commits
-
-
Paul Sokolovsky authored
-
Damien authored
-
- 21 Dec, 2013 1 commit
-
-
Damien authored
A big change. Micro Python objects are allocated as individual structs with the first element being a pointer to the type information (which is itself an object). This scheme follows CPython. Much more flexible, not necessarily slower, uses same heap memory, and can allocate objects statically. Also change name prefix, from py_ to mp_ (mp for Micro Python).
-
- 20 Dec, 2013 1 commit
-
-
Damien authored
-
- 17 Dec, 2013 1 commit
-
-
Damien authored
-
- 17 Nov, 2013 1 commit
-
-
Damien authored
-