summaryrefslogtreecommitdiff
path: root/py/objtype.c
AgeCommit message (Expand)Author
2020-11-19Always use preprocessor for MICROPY_ERROR_REPORTINGJeff Epler
2020-08-04various: Use mp_obj_get_type_qstr more widelyJeff Epler
2020-07-06Add license to some obvious files.Diego Elio Pettenò
2020-01-24Don't assume native methods want the native object as self.Scott Shawcroft
2019-12-13Revert subscr signature changeRoy Hooper
2019-12-13push changesRoy Hooper
2019-11-26remove unnecessary intermediate mp_obj_subscr wrapperRoy Hooper
2019-11-23Merge branch 'master' into new-pixelbuf-apiRoy Hooper
2019-11-23make ->subscr take an instance to pass when instance_subscr is called from su...Roy Hooper
2019-10-20fix show and fix step > 1Roy Hooper
2019-10-10mp_obj_instance_make_new: clearer way to avoid null pointer dereferenceJeff Epler
2019-10-08mp_obj_instance_make_new: avoid undefined behaviorJeff Epler
2019-05-13Check native object in case of early accessScott Shawcroft
2019-04-10Check for null local dictionariesScott Shawcroft
2019-04-09Tweak pybadge and fix display bugsScott Shawcroft
2019-02-11A variety of displayio improvementsScott Shawcroft
2019-02-01Don't long live class attributesScott Shawcroft
2019-01-14py changes for supporting superclass constructors that take kwargsScott Shawcroft
2018-08-09Two fixes and translate more strings.Scott Shawcroft
2018-07-13compiles and runs; hangs on import storage;storage.VfsFat.<tab>Dan Halbert
2018-07-12continued WIP: almost compilingDan Halbert
2018-07-11WIP: after merge; before testingDan Halbert
2018-06-08py/objtype: Optimise instance get/set/del by skipping special accessors.Damien George
2018-06-08py/objtype: Don't expose mp_obj_instance_attr().Damien George
2018-05-30py/objtype: Fix assertion failures in super_attr by checking type.Jeff Epler
2018-05-30py/objtype: Fix assertion failures in mp_obj_new_type by checking types.Jeff Epler
2018-05-25py/objtype: Remove TODO comment about needing to check for property.Damien George
2018-03-29Fix assertion failures in super_attrJeff Epler
2018-03-29Fix assertion failures in mp_obj_new_typeJeff Epler
2018-03-25super(): Do the same lookup tasks as regular getattrJeff Epler
2018-02-07py/objtype: Check and prevent delete/store on a fixed locals map.Damien George
2018-01-24Introduce a long lived section of the heap.Scott Shawcroft
2017-12-12py/objtype: Refactor object's handling of __new__ to not create 2 objs.Damien George
2017-12-12py/objtype: Implement better support for overriding native's __init__.Damien George
2017-11-24py/runtime: Add MP_BINARY_OP_CONTAINS as reverse of MP_BINARY_OP_IN.Damien George
2017-11-20py: Add config option to disable multiple inheritance.Damien George
2017-11-11py/objtype: mp_obj_new_type: Name base types related vars more clearly.Paul Sokolovsky
2017-11-02Merge tag 'v1.9.3'Scott Shawcroft
2017-10-27py/objtype: Introduce MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS.Paul Sokolovsky
2017-10-27py/objtype: Define all special methods if requested.Paul Sokolovsky
2017-10-24Merge commit 'f869d6b2e339c04469c6c9ea3fb2fabd7bbb2d8c' into nrf2_mergeScott Shawcroft
2017-10-21py/objtype: Fit qstrs for special methods in byte type.Paul Sokolovsky
2017-10-19py/objtype: Use CPython compatible method name for sizeof.Paul Sokolovsky
2017-10-05py/objtype: Clean up unary- and binary-op enum-to-qstr mapping tables.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-10-04py/objtype: Change type of enum-to-qstr table to uint16_t to save space.Damien George
2017-09-10py/runtime: Implement dispatch for "reverse op" special methods.Paul Sokolovsky
2017-09-07py/objtype: Make sure mp_binary_op_method_name has full size again.Paul Sokolovsky
2017-09-04py/objtype: Implement fallback for instance inplace special methods.Paul Sokolovsky
2017-08-31py/objtype: mp_obj_class_lookup: Improve debug logging.Paul Sokolovsky