Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-21 | Revamp qstrs: they now include length and hash. | Damien George | |
Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h | |||
2014-01-18 | Add skeleton implementation of array.array and bytearray. | Paul Sokolovsky | |
So far, only storage, initialization, repr() and buffer protocol is implemented - alredy suitable for passing binary data around. | |||
2014-01-18 | Add OverflowError and use it for small int overflow instead of assert. | Paul Sokolovsky | |
2014-01-15 | Merge branch 'str-repr' of github.com:pfalcon/micropython into pfalcon-str-repr | Damien George | |
Conflicts: tests/basics/tests/exception1.py | |||
2014-01-15 | Merge branch 'builtins' of github.com:chipaca/micropython into chipaca-builtins | Damien George | |
Added some checks for number of arguments. Conflicts: py/mpqstrraw.h | |||
2014-01-15 | Implement eval. | Damien George | |
2014-01-15 | Implement repr. | Damien George | |
2014-01-15 | Convert parse errors to exceptions. | Damien George | |
Parser no longer prints an error, but instead returns an exception ID and message. | |||
2014-01-15 | added filter() | John R. Lenton | |
2014-01-15 | Added map | John R. Lenton | |
2014-01-15 | Implement str() and repr() builtin functions. | Paul Sokolovsky | |
2014-01-14 | added enumerate() | John R. Lenton | |
2014-01-13 | sorted | John R. Lenton | |
2014-01-13 | added zip() | John R. Lenton | |
2014-01-09 | Merge pull request #123 from xbe/master | Damien George | |
Implement str.strip | |||
2014-01-09 | py: Implement base class lookup, issubclass, isinstance. | Damien George | |
2014-01-08 | Implement str.strip | xbe | |
2014-01-07 | Add OSError, Python 3.3 generic I/O exception. | Paul Sokolovsky | |
2014-01-04 | Convert Python types to proper Python type hierarchy. | Damien George | |
Now much more inline with how CPython does types. | |||
2014-01-04 | Add ellipsis object. | Damien George | |
2014-01-04 | Split qstr into pools, and put initial pool in ROM. | Damien George | |
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). |