Home
last modified time | relevance | path

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

/external/python/cpython3/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
/external/python/cpython2/Doc/c-api/
Diter.rst13 .. c:function:: int PyIter_Check(PyObject *o)
/external/python/cpython3/Include/cpython/
Dabstract.h334 #define PyIter_Check(obj) \ macro
/external/python/cpython3/Include/
Dabstract.h377 PyAPI_FUNC(int) PyIter_Check(PyObject *);
/external/python/cpython2/Include/
Dabstract.h637 #define PyIter_Check(obj) \ macro
/external/python/cpython3/PC/
Dpython3.def301 PyIter_Check=python39.PyIter_Check
/external/python/cpython3/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()
/external/python/cpython3/Modules/_sqlite/
Dcursor.c400 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/Doc/data/
Drefcounts.dat1073 PyIter_Check:int:::
1074 PyIter_Check:PyObject*:o:0:
/external/python/cpython3/Modules/
Ditertoolsmodule.c2006 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()
/external/python/cpython3/Python/
Dbltinmodule.c1384 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/pybind11/include/pybind11/
Dpytypes.h851 PYBIND11_OBJECT_DEFAULT(iterator, object, PyIter_Check)
/external/python/cpython2/Python/
Dbltinmodule.c1112 if (!PyIter_Check(it)) { in builtin_next()
/external/python/cpython2/Objects/
Dclassobject.c2075 if (res != NULL && !PyIter_Check(res)) { in instance_getiter()
Dabstract.c3095 if (res != NULL && !PyIter_Check(res)) {
/external/python/cpython2/Doc/data/
Drefcounts.dat571 PyIter_Check:int:o:0:
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a1.rst1133 macros :c:func:`PyIter_Check`, :c:func:`PyIndex_Check` and