We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Caused by #104750
import queue import threading q = queue.Queue() t = threading.Thread(target=q.get) t.start() q.shutdown() t.join(timeout=10.0) assert not t.is_alive() # raises AssertionError
Discovered here: #104228 (comment)
CPython main branch
Linux
The text was updated successfully, but these errors were encountered:
gh-117531: Unblock getters after non-immediate queue shutdown (#117532)
6bc0b33
(This is a small tweak of the original gh-104750 which added shutdown.)
pythongh-117531: Unblock getters after non-immediate queue shutdown (p…
56927d4
…ython#117532) (This is a small tweak of the original pythongh-104750 which added shutdown.)
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Bug report
Bug description:
Caused by #104750
Discovered here: #104228 (comment)
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Linked PRs
The text was updated successfully, but these errors were encountered: