Searched refs:PyCallIter_Type (Results 1 – 5 of 5) sorted by relevance
14 PyAPI_DATA(PyTypeObject) PyCallIter_Type;16 #define PyCallIter_Check(op) (Py_TYPE(op) == &PyCallIter_Type)
40 .. c:var:: PyTypeObject PyCallIter_Type50 Return true if the type of *op* is :c:data:`PyCallIter_Type`.
146 it = PyObject_GC_New(calliterobject, &PyCallIter_Type); in PyCallIter_New()205 PyTypeObject PyCallIter_Type = { variable
2213 if (PyType_Ready(&PyCallIter_Type) < 0) in _Py_ReadyTypes()
373 "PyCallIter_Type"