Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dgenobject.c12 static PyObject *gen_close(PyGenObject *, PyObject *);
87 res = gen_close(gen, NULL); in _PyGen_Finalize()
320 retval = gen_close((PyGenObject *)yf, NULL); in gen_close_iter()
369 gen_close(PyGenObject *gen, PyObject *args) in gen_close() function
765 {"close",(PyCFunction)gen_close, METH_NOARGS, close_doc},
1013 {"close",(PyCFunction)gen_close, METH_NOARGS, coro_close_doc},
1105 return gen_close((PyGenObject *)cw->cw_coroutine, args); in coro_wrapper_close()