Home
last modified time | relevance | path

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

/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/cpython2/Modules/_sqlite/
Dcursor.c480 if (PyIter_Check(second_argument)) { in _pysqlite_query_execute()
/external/python/cpython2/Modules/
DcPickle.c2425 else if (!PyIter_Check(listitems)) { in save_reduce()
2434 else if (!PyIter_Check(dictitems)) { in save_reduce()
/external/python/cpython2/Doc/data/
Drefcounts.dat571 PyIter_Check:int:o:0:
/external/python/cpython2/Objects/
Dclassobject.c2076 if (res != NULL && !PyIter_Check(res)) { in instance_getiter()
Dabstract.c3098 if (res != NULL && !PyIter_Check(res)) {
/external/python/cpython2/Python/
Dbltinmodule.c1111 if (!PyIter_Check(it)) { in builtin_next()