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 841 {"firstiter", "Hook to intercept first iteration"},
857 static char *keywords[] = {"firstiter", "finalizer", NULL};
858 PyObject *firstiter = NULL; local
863 &firstiter, &finalizer)) {
880 if (firstiter && firstiter != Py_None) {
881 if (!PyCallable_Check(firstiter)) {
883 "callable firstiter expected, got %.50s",
884 Py_TYPE(firstiter)->tp_name);
887 _PyEval_SetAsyncGenFirstiter(firstiter);
906 PyObject *firstiter = _PyEval_GetAsyncGenFirstiter(); local
    [all...]
ceval.c     [all...]
  /external/python/cpython3/Lib/test/
test_sys.py     [all...]
  /external/python/cpython3/Objects/
genobject.c 1264 PyObject *firstiter; local
    [all...]
  /external/python/cpython3/Lib/asyncio/
base_events.py 534 sys.set_asyncgen_hooks(firstiter=self._asyncgen_firstiter_hook,
    [all...]

Completed in 473 milliseconds