Home
last modified time | relevance | path

Searched refs:PySeqIter_Check (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Include/
Diterobject.h10 #define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type) macro
/external/python/cpython2/Doc/c-api/
Diterator.rst24 .. c:function:: int PySeqIter_Check(op)
/external/python/cpython2/Objects/
Diterobject.c52 assert(PySeqIter_Check(iterator)); in iter_iternext()