Home
last modified time | relevance | path

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

/third_party/python/Doc/c-api/
Diterator.rst37 Type object for iterator objects returned by :c:func:`PyCallIter_New` and the
47 .. c:function:: PyObject* PyCallIter_New(PyObject *callable, PyObject *sentinel)
/third_party/python/Include/
Diterobject.h21 PyAPI_FUNC(PyObject *) PyCallIter_New(PyObject *, PyObject *);
/third_party/python/Objects/
Diterobject.c181 PyCallIter_New(PyObject *callable, PyObject *sentinel) in PyCallIter_New() function
/third_party/python/Doc/data/
Dstable_abi.dat45 function,PyCallIter_New,3.2,
Drefcounts.dat224 PyCallIter_New:PyObject*::+1:
225 PyCallIter_New:PyObject*:callable:+1:
226 PyCallIter_New:PyObject*:sentinel:+1:
/third_party/python/PC/
Dpython3dll.c121 EXPORT_FUNC(PyCallIter_New)
/third_party/python/Misc/
Dstable_abi.txt370 function PyCallIter_New
/third_party/python/Python/
Dbltinmodule.c1588 return PyCallIter_New(v, sentinel); in builtin_iter()
/third_party/python/Modules/
D_sre.c909 iterator = PyCallIter_New(search, Py_None); in _sre_SRE_Pattern_finditer_impl()