- 15 Jan, 2014 1 commit
-
-
Damien George authored
-
- 14 Jan, 2014 1 commit
-
-
Damien George authored
-
- 13 Jan, 2014 4 commits
-
-
John R. Lenton authored
Made sorted() raise an exception instead of aborting when given no arguments; moved around some things in objfun.c as a consequence
-
John R. Lenton authored
-
Damien George authored
-
John R. Lenton authored
-
- 10 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 4 commits
-
-
Damien George authored
-
Damien George authored
Addresses issue #104.
-
Damien George authored
-
Damien George authored
-
- 04 Jan, 2014 2 commits
-
-
Damien George authored
Now much more inline with how CPython does types.
-
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).
-
- 03 Jan, 2014 1 commit
-
-
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 1 commit
-
-
Damien George authored
-
- 01 Jan, 2014 1 commit
-
-
Damien George authored
-
- 29 Dec, 2013 2 commits
- 21 Dec, 2013 2 commits
-
-
Damien authored
-
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).
-
- 17 Dec, 2013 2 commits