Searched refs:PyIter_Check (Results 1 – 18 of 18) sorted by relevance
10 .. c:function:: int PyIter_Check(PyObject *o)25 according to :c:func:`PyIter_Check` (it is up to the caller to check this).
2431 The returned object must be an :term:`iterator`, i.e. :c:func:`PyIter_Check`
336 if (!PyIter_Check(awaitable)) { in anextawaitable_getiter()
2814 if (res != NULL && !PyIter_Check(res)) { in PyObject_GetIter()2847 PyIter_Check(PyObject *obj) in PyIter_Check() function2897 if (arg == Py_None && PyIter_Check(iter)) { in PyIter_Send()
660 if (!PyIter_Check(obj)) { in proxy_iternext()
926 } else if (!PyIter_Check(res)) { in _PyCoro_GetAwaitableIter()
382 PyAPI_FUNC(int) PyIter_Check(PyObject *);
442 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
515 :c:func:`PyIter_Check` is now always declared as a function, in order to
1133 macros :c:func:`PyIter_Check`, :c:func:`PyIndex_Check` and
318 function,PyIter_Check,3.8,
1073 PyIter_Check:int:::1074 PyIter_Check:PyObject*:o:0:
306 EXPORT_FUNC(PyIter_Check)
2141 if (!PyIter_Check(source) || (active != NULL && !PyIter_Check(active))) { in chain_setstate()
3981 else if (!PyIter_Check(listitems)) { in save_reduce()3990 else if (!PyIter_Check(dictitems)) { in save_reduce()
2031 function PyIter_Check
1446 if (!PyIter_Check(it)) { in builtin_next()
2589 if (Py_IsNone(v) && PyIter_Check(receiver)) { in _PyEval_EvalFrameDefault()