Searched refs:TPSLOT (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | typeobject.c | 5992 #undef TPSLOT 6003 #define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ macro 6038 TPSLOT("__str__", tp_print, NULL, NULL, ""), 6039 TPSLOT("__repr__", tp_print, NULL, NULL, ""), 6040 TPSLOT("__getattribute__", tp_getattr, NULL, NULL, ""), 6041 TPSLOT("__getattr__", tp_getattr, NULL, NULL, ""), 6042 TPSLOT("__setattr__", tp_setattr, NULL, NULL, ""), 6043 TPSLOT("__delattr__", tp_setattr, NULL, NULL, ""), 6044 TPSLOT("__cmp__", tp_compare, _PyObject_SlotCompare, wrap_cmpfunc, 6046 TPSLOT("__repr__", tp_repr, slot_tp_repr, wrap_unaryfunc, [all …]
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 7075 #undef TPSLOT 7087 #define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ macro 7124 TPSLOT("__getattribute__", tp_getattr, NULL, NULL, ""), 7125 TPSLOT("__getattr__", tp_getattr, NULL, NULL, ""), 7126 TPSLOT("__setattr__", tp_setattr, NULL, NULL, ""), 7127 TPSLOT("__delattr__", tp_setattr, NULL, NULL, ""), 7128 TPSLOT("__repr__", tp_repr, slot_tp_repr, wrap_unaryfunc, 7130 TPSLOT("__hash__", tp_hash, slot_tp_hash, wrap_hashfunc, 7135 TPSLOT("__str__", tp_str, slot_tp_str, wrap_unaryfunc, 7137 TPSLOT("__getattribute__", tp_getattro, slot_tp_getattr_hook, [all …]
|