Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/c-api/
Diter.rst10 .. c:function:: int PyIter_Check(PyObject *o)
Dtypeobj.rst1395 The returned object must be an iterator, i.e. :c:func:`PyIter_Check` must
/external/python/cpython2/Doc/c-api/
Diter.rst13 .. c:function:: int PyIter_Check(PyObject *o)
/external/python/cpython2/Include/
Dabstract.h637 #define PyIter_Check(obj) \ macro
/external/python/cpython3/Include/
Dabstract.h593 #define PyIter_Check(obj) \ macro
/external/python/cpython3/Modules/_sqlite/
Dcursor.c415 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
/external/python/cpython2/Modules/_sqlite/
Dcursor.c479 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
/external/python/cpython3/Objects/
Dgenobject.c892 } else if (!PyIter_Check(res)) { in _PyCoro_GetAwaitableIter()
Dabstract.c2529 if (res != NULL && !PyIter_Check(res)) { in PyObject_GetIter()
/external/python/cpython3/Modules/
Ditertoolsmodule.c1951 if (!PyIter_Check(source) || (active != NULL && !PyIter_Check(active))) { in chain_setstate()
D_pickle.c3693 else if (!PyIter_Check(listitems)) { in save_reduce()
3702 else if (!PyIter_Check(dictitems)) { in save_reduce()
/external/python/cpython3/Doc/data/
Drefcounts.dat1045 PyIter_Check:int:::
1046 PyIter_Check:PyObject*:o:0:
/external/python/cpython3/Python/
Dbltinmodule.c1419 if (!PyIter_Check(it)) { in builtin_next()
/external/python/cpython2/Modules/
DcPickle.c2441 else if (!PyIter_Check(listitems)) { in save_reduce()
2450 else if (!PyIter_Check(dictitems)) { in save_reduce()
/external/python/cpython2/Python/
Dbltinmodule.c1112 if (!PyIter_Check(it)) { in builtin_next()
/external/python/cpython2/Doc/data/
Drefcounts.dat571 PyIter_Check:int:o:0:
/external/python/cpython2/Objects/
Dclassobject.c2075 if (res != NULL && !PyIter_Check(res)) { in instance_getiter()
Dabstract.c3095 if (res != NULL && !PyIter_Check(res)) {