summaryrefslogtreecommitdiffstatshomepage
path: root/py/objtype.c
Commit message (Expand)AuthorAge
* py: Factor and improve issubclass.Damien George2014-03-03
* Add mp_obj_is_subclass_fast() - intended for fast argument checking.Paul Sokolovsky2014-03-03
* Implement proper exception type hierarchy.Damien George2014-02-15
* Change mp_obj_type_t.name from const char * to qstr.Damien George2014-02-15
* Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George2014-02-12
* Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky2014-02-12
* py: Add some qstrs to the global table.Damien George2014-02-08
* Add staticmethod and classmethod to builtin namespace.Damien George2014-02-06
* py: Fix bug with dual initialisation of RT_UNARY_OP_NOT.Damien George2014-02-05
* py: Add built-in super.Damien George2014-02-05
* py: Add very basic implementation of dir() builtin.Damien George2014-02-02
* py: Partially fix native emitter to work with latest runtime.Damien George2014-02-02
* 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
* Remove obsoleted comment.Damien George2014-01-25
* py: Implement iterator support for object that has __getitem__.Damien George2014-01-25
* Second stage of qstr revamp: uPy str object can be qstr or not.Damien George2014-01-22
* Revamp qstrs: they now include length and hash.Damien George2014-01-21
* Improve method lookup in mp_obj_class_lookup.Damien George2014-01-18
* Implement framework for class-defined built-in operators.Damien George2014-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
* py: Implement staticmethod and classmethod (internally).Damien George2014-01-11
* py: Implement base class lookup, issubclass, isinstance.Damien George2014-01-09
* Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George2014-01-09
* py: Proper framework for built-in 'type'.Damien George2014-01-08
* Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George2014-01-07
|\
| * Co-exist with C++ (issue #85)ian-v2014-01-06
|/
* Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky2014-01-05
* Convert Python types to proper Python type hierarchy.Damien George2014-01-04
* py: Add framework for built-in "type()" function.Damien George2014-01-02
* Change object representation from 1 big union to individual structs.Damien2013-12-21