summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.c
Commit message (Expand)AuthorAge
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* mp_obj_equal(): Instead of assert(), throw NotImplementedError.Paul Sokolovsky2014-02-11
* unix microsocket: Add dummy makefile() method.Paul Sokolovsky2014-02-08
* py: Tidy up BINARY_OPs; negation done by special NOT bytecode.Damien George2014-02-01
* py: Improve __bool__ and __len__ dispatch; add slots for them.Damien George2014-01-30
* Implement __bool__ and __len__ via unary_op virtual method for all types.Paul Sokolovsky2014-01-30
* py: Add compile option to enable/disable source line numbers.Damien George2014-01-29
* py: Simpler implementation of mp_obj_callable.Damien George2014-01-23
* mp_obj_is_callable(): Only object types can be callable.Paul Sokolovsky2014-01-23
* Second stage of qstr revamp: uPy str object can be qstr or not.Damien George2014-01-22
* py: Remove implicit conversion of float to int in mp_obj_get_int().Damien George2014-01-22
* Add len() support for arrays.Paul Sokolovsky2014-01-21
* Merge branch 'master' of github.com:micropython/micropythonDamien George2014-01-21
|\
| * mp_obj_get_type_str(): Handle MP_OBJ_QSTR.Paul Sokolovsky2014-01-20
| * mp_identity(): Add generic identity function.Paul Sokolovsky2014-01-20
| * mp_obj_get_qstr(): Handle MP_OBJ_QSTR.Paul Sokolovsky2014-01-20
* | Revamp qstrs: they now include length and hash.Damien George2014-01-21
|/
* Properly print MP_OBJ_QSTR objects.Paul Sokolovsky2014-01-20
* py: Add full traceback to exception printing.Damien George2014-01-19
* Merge branch 'master' of github.com:dpgeorge/micropythonDamien George2014-01-18
|\
| * int: Add value accessors: mp_obj_int_get() & mp_obj_int_get_checked().Paul Sokolovsky2014-01-18
* | Make VM stack grow upwards, and so no reversed args arrays.Damien George2014-01-18
|/
* type->print(): Distinguish str() and repr() variety by passing extra param.Paul Sokolovsky2014-01-15
* mp_obj_equal(): Compare small and long ints properly.Paul Sokolovsky2014-01-13
* mp_obj_equal(): For non-trivial types, call out to type's special method.Paul Sokolovsky2014-01-12
* py: Implement staticmethod and classmethod (internally).Damien George2014-01-11
* Merge pull request #131 from chipaca/dict_fromkeysDamien George2014-01-10
|\
| * Added dict.fromkeys. Are we done with dict and #99 yet? I do think we are.John R. Lenton2014-01-10
* | mp_obj_equal(): Print which types' equality not implemented before assert().Paul Sokolovsky2014-01-11
|/
* py: add variable argument exception constructor function.Damien George2014-01-08
* py: Stuff qstr in object pointer; keys for mp_map_t are now always mp_obj_t.Damien George2014-01-08
* py: Improve __build_class__.Damien George2014-01-08
* Convert Python types to proper Python type hierarchy.Damien George2014-01-04
* Split qstr into pools, and put initial pool in ROM.Damien George2014-01-04
* py: add int() and float() built-ins, partially implemented.Damien George2014-01-01
* Change object representation from 1 big union to individual structs.Damien2013-12-21
* py: add more Python built-in functions.Damien2013-12-17
* py: split runtime into map, obj, builtin.Damien2013-12-17