Home
last modified time | relevance | path

Searched refs:PyCallIter_New (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Doc/c-api/
Diterator.rst42 Type object for iterator objects returned by :c:func:`PyCallIter_New` and the
55 .. c:function:: PyObject* PyCallIter_New(PyObject *callable, PyObject *sentinel)
/external/python/cpython2/Include/
Diterobject.h18 PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
/external/python/cpython2/Objects/
Diterobject.c143 PyCallIter_New(PyObject *callable, PyObject *sentinel) in PyCallIter_New() function
/external/python/cpython2/Doc/data/
Drefcounts.dat129 PyCallIter_New:PyObject*::+1:
130 PyCallIter_New:PyObject*:callable::
131 PyCallIter_New:PyObject*:sentinel::
/external/python/cpython2/PC/os2emx/
Dpython27.def371 "PyCallIter_New"
/external/python/cpython2/Python/
Dbltinmodule.c1311 return PyCallIter_New(v, w); in builtin_iter()
/external/python/cpython2/Modules/
D_sre.c2238 iterator = PyCallIter_New(search, Py_None); in pattern_finditer()