Searched refs:TPSLOT (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Objects/ |
D | typeobject.c | 7858 #undef TPSLOT 7870 #define TPSLOT(NAME, SLOT, FUNCTION, WRAPPER, DOC) \ macro 7907 TPSLOT("__getattribute__", tp_getattr, NULL, NULL, ""), 7908 TPSLOT("__getattr__", tp_getattr, NULL, NULL, ""), 7909 TPSLOT("__setattr__", tp_setattr, NULL, NULL, ""), 7910 TPSLOT("__delattr__", tp_setattr, NULL, NULL, ""), 7911 TPSLOT("__repr__", tp_repr, slot_tp_repr, wrap_unaryfunc, 7913 TPSLOT("__hash__", tp_hash, slot_tp_hash, wrap_hashfunc, 7918 TPSLOT("__str__", tp_str, slot_tp_str, wrap_unaryfunc, 7920 TPSLOT("__getattribute__", tp_getattro, slot_tp_getattr_hook, [all …]
|