Home | History | Annotate | Download | only in Objects

Lines Matching defs:type_list

78 static PyTypeObject *type_list;
79 /* All types are added to type_list, at least when
83 is set, they will be removed from the type_list
94 for (tp = type_list; tp; tp = tp->tp_next)
121 for (tp = type_list; tp; tp = tp->tp_next) {
145 if (type_list)
146 type_list->tp_prev = tp;
147 tp->tp_next = type_list;
151 * refcounts here. type_list gets a new reference to tp,
152 * while ownership of the reference type_list used to hold
157 type_list = tp;
175 /* unlink the type from type_list */
179 type_list = tp->tp_next;