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

  /external/python/cpython3/Objects/
genobject.c 1264 PyObject *firstiter; local
    [all...]
  /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...]

Completed in 475 milliseconds