8000 GH-117714: implement athrow().close() and asend().close() using throw by graingert · Pull Request #117906 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

GH-117714: implement athrow().close() and asend().close() using throw #117906

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Objects/genobject.c
Co-authored-by: Petr Viktorin <encukou@gmail.com>
  • Loading branch information
graingert and encukou authored May 6, 2024
commit c95c4f7d3d8915299e54dc1824734790c9710e4d
1 change: 0 additions & 1 deletion Objects/genobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
#include "pycore_pystate.h" // _PyThreadState_GET()

#include "pystats.h"
#include "pyerrors.h"

static PyObject *gen_close(PyGenObject *, PyObject *);
static PyObject *async_gen_asend_new(PyAsyncGenObject *, PyObject *);
Expand Down
0