HomeSort by relevance Sort by last modified time
    Searched refs:firstiter (Results 1 - 5 of 5) sorted by null

  /external/python/cpython3/Python/
sysmodule.c 702 {"firstiter", "Hook to intercept first iteration"},
718 static char *keywords[] = {"firstiter", "finalizer", NULL};
719 PyObject *firstiter = NULL; local
724 &firstiter, &finalizer)) {
741 if (firstiter && firstiter != Py_None) {
742 if (!PyCallable_Check(firstiter)) {
744 "callable firstiter expected, got %.50s",
745 Py_TYPE(firstiter)->tp_name);
748 _PyEval_SetAsyncGenFirstiter(firstiter);
767 PyObject *firstiter = _PyEval_GetAsyncGenFirstiter(); local
    [all...]
ceval.c     [all...]
  /external/python/cpython3/Lib/test/
test_sys.py     [all...]
  /external/python/cpython3/Objects/
genobject.c 1323 PyObject *firstiter; local
    [all...]
  /external/python/cpython3/Lib/asyncio/
base_events.py 416 sys.set_asyncgen_hooks(firstiter=self._asyncgen_firstiter_hook,
    [all...]

Completed in 100 milliseconds