Home
last modified time | relevance | path

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

/third_party/python/Doc/c-api/
Diter.rst10 .. c:function:: int PyIter_Check(PyObject *o)
Dtypeobj.rst2314 The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must
/third_party/python/Include/cpython/
Dabstract.h334 #define PyIter_Check(obj) \ macro
/third_party/python/Include/
Dabstract.h377 PyAPI_FUNC(int) PyIter_Check(PyObject *);
/third_party/python/Objects/
Dabstract.c2663 if (res != NULL && !PyIter_Check(res)) { in PyObject_GetIter()
2675 #undef PyIter_Check
2677 int PyIter_Check(PyObject *obj) in PyIter_Check() function
Dgenobject.c877 } else if (!PyIter_Check(res)) { in _PyCoro_GetAwaitableIter()
/third_party/python/PC/
Dpython3.def304 PyIter_Check=python39.PyIter_Check
/third_party/python/Modules/_sqlite/
Dcursor.c400 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
/third_party/python/Doc/data/
Drefcounts.dat1073 PyIter_Check:int:::
1074 PyIter_Check:PyObject*:o:0:
/third_party/python/Modules/
Ditertoolsmodule.c2007 if (!PyIter_Check(source) || (active != NULL && !PyIter_Check(active))) { in chain_setstate()
D_pickle.c3985 else if (!PyIter_Check(listitems)) { in save_reduce()
3994 else if (!PyIter_Check(dictitems)) { in save_reduce()
/third_party/python/Python/
Dbltinmodule.c1384 if (!PyIter_Check(it)) { in builtin_next()
/third_party/python/Misc/
DNEWS8119 and the macros :c:func:`PyIter_Check`, :c:func:`PyIndex_Check` and