-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
gh-128639: Don't assume one thread in subinterpreter finalization #128640
base: main
Are you sure you want to change the base?
gh-128639: Don't assume one thread in subinterpreter finalization #128640
Conversation
Py_NewInterpreter(); | ||
Py_NewInterpreter(); | ||
Py_NewInterpreter(); | ||
PyThreadState *tstate = PyThreadState_Get(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this test working before was a fluke. Py_NewInterpreter
changes the thread state, and I don't think we support calling Py_Finalize
from a subinterpreter.
if (tstate == NULL) | ||
{ | ||
// XXX Some graceful way to always get a thread state? | ||
Py_FatalError("thread state allocation failed"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should you stop and return after this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, there's no way to fail here other than a fatal error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, I see now that Py_FatalError aborts execution.
…rpreter-thread-shutdown
Incidentally, this also fixed the warning not showing up if a subinterpreter wasn't cleaned up via
_interpreters.destroy
. I had to update some of the tests as a result.