- 12 Jan, 2014 3 commits
-
-
John R. Lenton authored
-
John R. Lenton authored
-
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 1 commit
-
-
Damien George authored
-
- 07 Jan, 2014 2 commits
-
-
John R. Lenton authored
-
John R. Lenton authored
Added 0 to the list of primes. Funky primes, these.
-
- 06 Jan, 2014 2 commits
- 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.
-
- 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).
-
- 17 Dec, 2013 1 commit
-
-
Damien authored
-