gh-138253: Fix compatibility of sub-interpreters queues with queue.Queue#138256
Merged
serhiy-storchaka merged 2 commits intopython:mainfrom Sep 2, 2025
Merged
Conversation
…eue.Queue Add the block parameter in the put() and get() methods of the concurrent.interpreters queues for compatibility with the queue.Queue interface.
hugovk
reviewed
Aug 30, 2025
Misc/NEWS.d/next/Library/2025-08-30-10-58-15.gh-issue-138253.9Ehj-N.rst
Outdated
Show resolved
Hide resolved
…Ehj-N.rst Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
sobolevn
approved these changes
Aug 30, 2025
Member
sobolevn
left a comment
There was a problem hiding this comment.
thanks! this looks like a good solution, fortunatelly we discovered it before 3.14.0 :)
gpshead
approved these changes
Aug 31, 2025
Member
|
Up to @hugovk to decide if this is worthy of being in a rc. This is a bugfix on an obvious omission within a brand new public API, it'd also make sense for 3.14.1 as well given the 3.14.0rc2 docs already documented that the |
auvipy
approved these changes
Sep 1, 2025
|
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.14. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 2, 2025
…eue.Queue (pythonGH-138256) Add the block parameter in the put() and get() methods of the concurrent.interpreters queues for compatibility with the queue.Queue interface. (cherry picked from commit cb18269) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
|
GH-138367 is a backport of this pull request to the 3.14 branch. |
hugovk
pushed a commit
that referenced
this pull request
Sep 8, 2025
kumaraditya303
pushed a commit
to miss-islington/cpython
that referenced
this pull request
Sep 9, 2025
…with queue.Queue (pythonGH-138256) (python#138367) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
lkollar
pushed a commit
to lkollar/cpython
that referenced
this pull request
Sep 9, 2025
…eue.Queue (pythonGH-138256) Add the block parameter in the put() and get() methods of the concurrent.interpreters queues for compatibility with the queue.Queue interface.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add the block parameter in the put() and get() methods of the concurrent.interpreters queues for compatibility with the queue.Queue interface.