aboutsummaryrefslogtreecommitdiff
path: root/py/objtype.c
AgeCommit message (Expand)Author
2014-04-08py: Remove DELETE_SUBSCR opcode, combine with STORE_SUBSCR.Damien George
2014-04-08py: Finish implementation of all del opcodes.Damien George
2014-04-05py: Make all objects and instances derive from object.Damien George
2014-04-05py: Change nlr_jump to nlr_raise, to aid in debugging.Damien George
2014-04-05objtype: Add equality test for type types.Paul Sokolovsky
2014-04-02py: Factor out static/class method unwrapping code; add tests.Damien George
2014-03-31py: Implement __getattr__.Damien George
2014-03-31objtype: Wrap .__name__ handling in MICROPY_CPYTHON_COMPAT.Paul Sokolovsky
2014-03-31objtype: Add virtual __name__ attribute.Paul Sokolovsky
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-29py: Rename old const type objects to mp_type_* for consistency.Damien George
2014-03-29py: Change mp_const_* objects to macros.Damien George
2014-03-27py: Fix bug in type_store_attr, trying to store to ROM.Damien George
2014-03-26py: Fix logic bugs in object attribute/method extraction.Damien George
2014-03-26Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-26py: Add support for user-defined iterators via __iter__, __next__.Damien George
2014-03-17py: Clean up includes.xbe
2014-03-16Implement support for __str__ and __repr__ special methods in classes.Paul Sokolovsky
2014-03-03py: Factor and improve issubclass.Damien George
2014-03-03Add mp_obj_is_subclass_fast() - intended for fast argument checking.Paul Sokolovsky
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-12Remove mp_obj_new_exception_msg_1_arg and _2_arg.Damien George
2014-02-12Replace global "static" -> "STATIC", to allow "analysis builds". Part 1.Paul Sokolovsky
2014-02-08py: Add some qstrs to the global table.Damien George
2014-02-06Add staticmethod and classmethod to builtin namespace.Damien George
2014-02-05py: Fix bug with dual initialisation of RT_UNARY_OP_NOT.Damien George
2014-02-05py: Add built-in super.Damien George
2014-02-02py: Add very basic implementation of dir() builtin.Damien George
2014-02-02py: Partially fix native emitter to work with latest runtime.Damien George
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-25Remove obsoleted comment.Damien George
2014-01-25py: Implement iterator support for object that has __getitem__.Damien George
2014-01-22Second stage of qstr revamp: uPy str object can be qstr or not.Damien George
2014-01-21Revamp qstrs: they now include length and hash.Damien George
2014-01-18Improve method lookup in mp_obj_class_lookup.Damien George
2014-01-18Implement framework for class-defined built-in operators.Damien George
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-11py: Implement staticmethod and classmethod (internally).Damien George
2014-01-09py: Implement base class lookup, issubclass, isinstance.Damien George
2014-01-09Improved type/class/instance code; mp_obj_type_t now has load_attr, store_attr.Damien George
2014-01-08py: Proper framework for built-in 'type'.Damien George
2014-01-07Merge branch 'cplusplus' of https://github.com/ian-v/micropython into ian-v-c...Damien George
2014-01-06Co-exist with C++ (issue #85)ian-v
2014-01-05Convert many object types structs to use C99 tagged initializer syntax.Paul Sokolovsky
2014-01-04Convert Python types to proper Python type hierarchy.Damien George