Home
last modified time | relevance | path

Searched refs:PyIter_Check (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Doc/c-api/
Diter.rst10 .. c:function:: int PyIter_Check(PyObject *o)
25 according to :c:func:`PyIter_Check` (it is up to the caller to check this).
Dtypeobj.rst2431 The returned object must be an :term:`iterator`, i.e. :c:func:`PyIter_Check`
/third_party/python/Objects/
Diterobject.c336 if (!PyIter_Check(awaitable)) { in anextawaitable_getiter()
Dabstract.c2814 if (res != NULL && !PyIter_Check(res)) { in PyObject_GetIter()
2847 PyIter_Check(PyObject *obj) in PyIter_Check() function
2897 if (arg == Py_None && PyIter_Check(iter)) { in PyIter_Send()
Dweakrefobject.c660 if (!PyIter_Check(obj)) { in proxy_iternext()
Dgenobject.c926 } else if (!PyIter_Check(res)) { in _PyCoro_GetAwaitableIter()
/third_party/python/Include/
Dabstract.h382 PyAPI_FUNC(int) PyIter_Check(PyObject *);
/third_party/python/Modules/_sqlite/
Dcursor.c442 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
/third_party/python/Misc/NEWS.d/
D3.10.0a6.rst515 :c:func:`PyIter_Check` is now always declared as a function, in order to
D3.8.0a1.rst1133 macros :c:func:`PyIter_Check`, :c:func:`PyIndex_Check` and
/third_party/python/Doc/data/
Dstable_abi.dat318 function,PyIter_Check,3.8,
Drefcounts.dat1073 PyIter_Check:int:::
1074 PyIter_Check:PyObject*:o:0:
/third_party/python/PC/
Dpython3dll.c306 EXPORT_FUNC(PyIter_Check)
/third_party/python/Modules/
Ditertoolsmodule.c2141 if (!PyIter_Check(source) || (active != NULL && !PyIter_Check(active))) { in chain_setstate()
D_pickle.c3981 else if (!PyIter_Check(listitems)) { in save_reduce()
3990 else if (!PyIter_Check(dictitems)) { in save_reduce()
/third_party/python/Misc/
Dstable_abi.txt2031 function PyIter_Check
/third_party/python/Python/
Dbltinmodule.c1446 if (!PyIter_Check(it)) { in builtin_next()
Dceval.c2589 if (Py_IsNone(v) && PyIter_Check(receiver)) { in _PyEval_EvalFrameDefault()