8000 gh-76785: Expand How Interpreter Channels Handle Interpreter Finalization by ericsnowcurrently · Pull Request #121805 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-76785: Expand How Interpreter Channels Handle Interpreter Finalization #121805

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
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
Next Next commit
Drop some outdated TODO comments.
  • Loading branch information
ericsnowcurrently committed Jul 15, 2024
commit 7fe548d79d49a37ca22fc35f33089c9441e20413
2 changes: 0 additions & 2 deletions Modules/_interpchannelsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -3092,7 +3092,6 @@ channelsmod_send(PyObject *self, PyObject *args, PyObject *kwds)

/* Queue up the object. */
int err = 0;
// XXX Store unboundop
if (blocking) {
err = channel_send_wait(&_globals.channels, cid, obj, unboundop, timeout);
}
Expand Down Expand Up @@ -3149,7 +3148,6 @@ channelsmod_send_buffer(PyObject *self, PyObject *args, PyObject *kwds)

/* Queue up the object. */
int err = 0;
// XXX Store unboundop
if (blocking) {
err = channel_send_wait(
&_globals.channels, cid, tempobj, unboundop, timeout);
Expand Down
0