Searched refs:PyAsyncGenObject (Results 1 – 3 of 3) sorted by relevance
13 static PyObject *async_gen_asend_new(PyAsyncGenObject *, PyObject *);14 static PyObject *async_gen_athrow_new(PyAsyncGenObject *, PyObject *);56 PyAsyncGenObject *agen = (PyAsyncGenObject*)self; in _PyGen_Finalize()123 Py_CLEAR(((PyAsyncGenObject*)gen)->ag_finalizer); in gen_dealloc()1235 PyAsyncGenObject *ags_gen;1247 PyAsyncGenObject *agt_gen;1271 async_gen_traverse(PyAsyncGenObject *gen, visitproc visit, void *arg) in async_gen_traverse()1279 async_gen_repr(PyAsyncGenObject *o) in async_gen_repr()1287 async_gen_init_hooks(PyAsyncGenObject *o) in async_gen_init_hooks()1325 async_gen_anext(PyAsyncGenObject *o) in async_gen_anext()[all …]
78 } PyAsyncGenObject; typedef
684 Fix AttributeError when calling get_stack on a PyAsyncGenObject Task