Searched refs:PySeqIter_Type (Results 1 – 5 of 5) sorted by relevance
8 PyAPI_DATA(PyTypeObject) PySeqIter_Type;10 #define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)
15 .. c:var:: PyTypeObject PySeqIter_Type26 Return true if the type of *op* is :c:data:`PySeqIter_Type`.
20 it = PyObject_GC_New(seqiterobject, &PySeqIter_Type); in PySeqIter_New()101 PyTypeObject PySeqIter_Type = { variable
2216 if (PyType_Ready(&PySeqIter_Type) < 0) in _Py_ReadyTypes()
372 "PySeqIter_Type"