Searched refs:PyIter_Check (Results 1 – 13 of 13) sorted by relevance
10 .. c:function:: int PyIter_Check(PyObject *o)
2314 The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must
334 #define PyIter_Check(obj) \ macro
377 PyAPI_FUNC(int) PyIter_Check(PyObject *);
2663 if (res != NULL && !PyIter_Check(res)) { in PyObject_GetIter()2675 #undef PyIter_Check2677 int PyIter_Check(PyObject *obj) in PyIter_Check() function
877 } else if (!PyIter_Check(res)) { in _PyCoro_GetAwaitableIter()
304 PyIter_Check=python39.PyIter_Check
400 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
1073 PyIter_Check:int:::1074 PyIter_Check:PyObject*:o:0:
2007 if (!PyIter_Check(source) || (active != NULL && !PyIter_Check(active))) { in chain_setstate()
3985 else if (!PyIter_Check(listitems)) { in save_reduce()3994 else if (!PyIter_Check(dictitems)) { in save_reduce()
1384 if (!PyIter_Check(it)) { in builtin_next()
8119 and the macros :c:func:`PyIter_Check`, :c:func:`PyIndex_Check` and