Home
last modified time | relevance | path

Searched refs:staticbase (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dtypeobject.c4934 PyTypeObject *type, *subtype, *staticbase; local
4968 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);
/external/python/cpython3/Objects/
Dtypeobject.c6171 PyTypeObject *type, *subtype, *staticbase; in tp_new_wrapper() local
6209 staticbase = subtype; in tp_new_wrapper()
6210 while (staticbase && (staticbase->tp_new == slot_tp_new)) in tp_new_wrapper()
6211 staticbase = staticbase->tp_base; in tp_new_wrapper()
6214 if (staticbase && staticbase->tp_new != type->tp_new) { in tp_new_wrapper()
6219 staticbase->tp_name); in tp_new_wrapper()