- Jan 04, 2014
-
-
Damien George authored
-
Damien George authored
Qstr's are now split into a linked-list of qstr pools. This has 2 benefits: the first pool can be in ROM (huge benefit, since we no longer use RAM for the core qstrs), and subsequent pools use m_new for the next pool instead of m_renew (thus avoiding a huge single table for all the qstrs). Still would be better to use a hash table, but this scheme takes us part of the way (eventually convert the pools to hash tables). Also fixed bug with import. Also improved the way the module code is referenced (not magic number 1 anymore).
-
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
-
Damien George authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
Only step=1 and non-negative indexes are supported so far.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
So far, only start and stop integer indexes are supported. Step is not supported, as well as objects of arbitrary types.
-
- Jan 03, 2014
-
-
John R. Lenton authored
-
Paul Sokolovsky authored
This in particular makes it available for stm port.
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
* Fixes issue #51 * Adds a specific error message for when you try to pop an empty list. * Releases some memory if the list has shurnk a lot.
-
Paul Sokolovsky authored
mpconfig.h will automatically pull mpconfigport.h.
-
Paul Sokolovsky authored
-
Paul Sokolovsky authored
This is just max value of current_bytes_allocated seen.
-
Paul Sokolovsky authored
Unlike total_bytes_allocated, this tracks m_free()'s too.
-
Paul Sokolovsky authored
-
Damien George authored
-
Damien George authored
-
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.
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
John R. Lenton authored
-
Damien George authored
-
- Jan 02, 2014
-
-
Damien George authored
-
Damien George authored
Generator objects now allocate the object and the state in one malloc. This improvement fixes Issue #38.
-
Damien George authored
-
Damien George authored
-
Damien George authored
-
Paul Sokolovsky authored
This is based on the fact that qstr so far behaves more like byte string than like Unicode string (for example, "012"[0] returns 48 (int)).
-
Damien George authored
This fixes Issue #29, and means the core is no longer dependent on string functions, except strlen.
-
Damien George authored
-
- Jan 01, 2014
-
-
Edd Barrett authored
-