aboutsummaryrefslogtreecommitdiff
path: root/py/objtype.c
AgeCommit message (Expand)Author
2015-02-08py: Fix instance lookup, since object is not a real type.Damien George
2015-01-31py: Add MICROPY_PY_ALL_SPECIAL_METHODS and __iadd__ special method under it.Paul Sokolovsky
2015-01-27py: Specify unary/binary op name in TypeError error message.Damien George
2015-01-20py: Use mp_arg_check_num in some _make_new functions.Damien George
2015-01-20py, unix: Allow to compile with -Wunused-parameter.Damien George
2015-01-11py: Remove unnecessary BINARY_OP_EQUAL code that just checks pointers.Damien George
2015-01-08tests: Add test for when instance member overrides class member.Damien George
2015-01-07py: Add option to cache map lookup results in bytecode.Damien George
2015-01-01py: Move to guarded includes, everywhere in py/ core.Damien George
2014-12-28showbc: Print operation mnemonic in BINARY_OP.Paul Sokolovsky
2014-11-06py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George
2014-11-05py: Fix some macros defines; cleanup some includes.Damien George
2014-11-03py: Explicitly set uninitialised struct member to false.Damien George
2014-11-03py: Fix builtin callable so it checks user-defined instances correctly.Damien George
2014-10-23py: Use MP_OBJ_NULL instead of NULL in a few places.Damien George
2014-08-30py: Make tuple and list use mp_int_t/mp_uint_t.Damien George
2014-08-30Change some parts of the core API to use mp_uint_t instead of uint/int.Damien George
2014-08-26py: Add dispatch for user defined ==, >, <=, >=.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-07-05py: Automatically ake __new__ a staticmethod.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-10py: Implement __contains__ special method.Damien George
2014-06-08objtype: Fix passing of class param to inherited classmethods.Paul Sokolovsky
2014-06-08objtype: Optimize stack usage mp_obj_class_lookup().Paul Sokolovsky
2014-06-08objtype: Enable __lt__ method support for instances.Paul Sokolovsky
2014-06-06Change comments (mainly URLs) to no longer specifically say Python 3.3Chris Angelico
2014-06-03py: Allow tail call optimisation in mp_call_function_n_kw.Damien George
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-22py: Initial attempts to actually allow implementing __new__ in Python.Paul Sokolovsky
2014-05-21objtype: super: Fall back to "object" lookup as last resort.Paul Sokolovsky
2014-05-21objtype: super: Add stop condition for looking up in base types.Paul Sokolovsky
2014-05-21py: Rename MP_OBJ_NOT_SUPPORTED to MP_OBJ_NULL.Damien George
2014-05-19objtype: Separate __new__ and __init__ methods.Paul Sokolovsky
2014-05-13py, unix: Add copyright for modules I worked closely on.Paul Sokolovsky
2014-05-11py: Use mp_arg_check_num in more places.Damien George
2014-05-11objtuple: Go out of the way to support comparison of subclasses.Paul Sokolovsky
2014-05-11py: Don't try to "bind" types store as attributes of objects.Paul Sokolovsky
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