Home | History | Annotate | Download | only in Objects

Lines Matching refs:staticbase

5646     PyTypeObject *type, *subtype, *staticbase;
5680 staticbase = subtype;
5681 while (staticbase && (staticbase->tp_new == slot_tp_new))
5682 staticbase = staticbase->tp_base;
5683 /* If staticbase is NULL now, it is a really weird type.
5685 if (staticbase && staticbase->tp_new != type->tp_new) {
5690 staticbase->tp_name);