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