Searched refs:staticbase (Results 1 – 2 of 2) sorted by relevance
5865 PyTypeObject *type, *subtype, *staticbase; in tp_new_wrapper() local5899 staticbase = subtype; in tp_new_wrapper()5900 while (staticbase && (staticbase->tp_new == slot_tp_new)) in tp_new_wrapper()5901 staticbase = staticbase->tp_base; in tp_new_wrapper()5904 if (staticbase && staticbase->tp_new != type->tp_new) { in tp_new_wrapper()5909 staticbase->tp_name); in tp_new_wrapper()
4934 PyTypeObject *type, *subtype, *staticbase; local4968 staticbase = subtype;4969 while (staticbase && (staticbase->tp_flags & Py_TPFLAGS_HEAPTYPE))4970 staticbase = staticbase->tp_base;4973 if (staticbase && staticbase->tp_new != type->tp_new) {4978 staticbase->tp_name);