Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Second stage of qstr revamp: uPy str object can be qstr or not. | Damien George | 2014-01-22 |
| | |||
* | py: Remove implicit conversion of float to int in mp_obj_get_int(). | Damien George | 2014-01-22 |
| | | | | Addresses Issue #199. | ||
* | Add len() support for arrays. | Paul Sokolovsky | 2014-01-21 |
| | |||
* | Merge branch 'master' of github.com:micropython/micropython | Damien George | 2014-01-21 |
|\ | | | | | | | | | | | | | | | | | Conflicts: py/objstr.c py/py.mk py/stream.c unix/main.c unix/socket.c | ||
| * | mp_obj_get_type_str(): Handle MP_OBJ_QSTR. | Paul Sokolovsky | 2014-01-20 |
| | | |||
| * | mp_identity(): Add generic identity function. | Paul Sokolovsky | 2014-01-20 |
| | | | | | | | | Useful as getiter method for objects which are their own iterators, etc. | ||
| * | mp_obj_get_qstr(): Handle MP_OBJ_QSTR. | Paul Sokolovsky | 2014-01-20 |
| | | |||
* | | Revamp qstrs: they now include length and hash. | Damien George | 2014-01-21 |
|/ | | | | | Can now have null bytes in strings. Can define ROM qstrs per port using qstrdefsport.h | ||
* | Properly print MP_OBJ_QSTR objects. | Paul Sokolovsky | 2014-01-20 |
| | |||
* | py: Add full traceback to exception printing. | Damien George | 2014-01-19 |
| | |||
* | Merge branch 'master' of github.com:dpgeorge/micropython | Damien George | 2014-01-18 |
|\ | |||
| * | int: Add value accessors: mp_obj_int_get() & mp_obj_int_get_checked(). | Paul Sokolovsky | 2014-01-18 |
| | | | | | | | | | | | | mp_obj_int_get() can be used when just full resolution of C machine_int_t is required (returns truncated value of long int). mp_obj_int_get_checked() will throw exception if Python int value not representable in machine_int_t. | ||
* | | Make VM stack grow upwards, and so no reversed args arrays. | Damien George | 2014-01-18 |
|/ | | | | | | | | | | | | | | | Change state layout in VM so the stack starts at state[0] and grows upwards. Locals are at the top end of the state and number downwards. This cleans up a lot of the interface connecting the VM to C: now all functions that take an array of Micro Python objects are in order (ie no longer in reverse). Also clean up C API with keyword arguments (call_n and call_n_kw replaced with single call method that takes keyword arguments). And now make_new takes keyword arguments. emitnative.c has not yet been changed to comply with the new order of stack layout. | ||
* | type->print(): Distinguish str() and repr() variety by passing extra param. | Paul Sokolovsky | 2014-01-15 |
| | |||
* | mp_obj_equal(): Compare small and long ints properly. | Paul Sokolovsky | 2014-01-13 |
| | | | | By dispatching to long int methods. | ||
* | mp_obj_equal(): For non-trivial types, call out to type's special method. | Paul Sokolovsky | 2014-01-12 |
| | |||
* | py: Implement staticmethod and classmethod (internally). | Damien George | 2014-01-11 |
| | | | | Still need to make built-ins by these names, and write tests. | ||
* | Merge pull request #131 from chipaca/dict_fromkeys | Damien George | 2014-01-10 |
|\ | | | | | Added dict.fromkeys. | ||
| * | Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are. | John R. Lenton | 2014-01-10 |
| | | |||
* | | mp_obj_equal(): Print which types' equality not implemented before assert(). | Paul Sokolovsky | 2014-01-11 |
|/ | |||
* | py: add variable argument exception constructor function. | Damien George | 2014-01-08 |
| | | | | Addresses issue #104. | ||
* | py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t. | Damien George | 2014-01-08 |
| | |||
* | py: Improve __build_class__. | Damien George | 2014-01-08 |
| | |||
* | Convert Python types to proper Python type hierarchy. | Damien George | 2014-01-04 |
| | | | | Now much more inline with how CPython does types. | ||
* | Split qstr into pools, and put initial pool in ROM. | Damien George | 2014-01-04 |
| | | | | | | | | | | | | | | | | 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). | ||
* | py: add int() and float() built-ins, partially implemented. | Damien George | 2014-01-01 |
| | |||
* | Change object representation from 1 big union to individual structs. | Damien | 2013-12-21 |
| | | | | | | | | | | 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). | ||
* | py: add more Python built-in functions. | Damien | 2013-12-17 |
| | |||
* | py: split runtime into map, obj, builtin. | Damien | 2013-12-17 |