aboutsummaryrefslogtreecommitdiff
path: root/py/objtype.c
AgeCommit message (Expand)Author
2014-05-10objtype: Comments for duplicating code in runtime.c.Paul Sokolovsky
2014-05-10objtype: Implement ->getiter() method for instances.Paul Sokolovsky
2014-05-10objtype: Don't treat inheritance from "object" as from native type.Paul Sokolovsky
2014-05-10py: Tidy up returning NULL which should be MP_OBJ_NOT_SUPPORTED.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03py, objtype.c: Rename class_ to instance_ following change of typedef.Damien George
2014-05-02py, unix: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-05-02objtype: Work around stupid strict aliasing check.Paul Sokolovsky
2014-05-02objtype: Rename mp_obj_class_t -> mp_obj_instance_t and move to local header.Paul Sokolovsky
2014-05-02objtype: .print() Exception instances in adhoc way.Paul Sokolovsky
2014-04-30objtype: Support calling normal methods inherited from native base class.Paul Sokolovsky
2014-04-29objtype: Add support for looking up non-method attrs in native base class.Paul Sokolovsky
2014-04-29objtype: Implement basic framework for subclassing native types.Paul Sokolovsky
2014-04-25py: Support instance __call__ method.Paul Sokolovsky
2014-04-21py: Fix super() bug, where it didn't allow instance access.Damien George
2014-04-17py: Add MP_OBJ_STOP_ITERATION and make good use of it.Damien George
2014-04-17py: Merge BINARY_OP_SUBSCR and store_subscr (w/ delete) into subscr.Damien George
2014-04-15py: Implement __delitem__ method for classes.Paul Sokolovsky
2014-04-13py: Add property object, with basic functionality.Damien George
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