| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Sorry, something went wrong.
|
Please avoid modify unrelated files in one PR. |
Sorry, something went wrong.
Sorry, something went wrong.
|
And if this PR is fully generated by LLM, please read https://devguide.python.org/getting-started/generative-ai/ first. @WYSIATI |
Sorry, something went wrong.
…hods The multiprocessing.Queue documentation states it implements all methods of queue.Queue except task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, multiprocessing.Queue also does not implement it. Update the docs to include shutdown() in the list of excluded methods.
|
@aisk Thanks for the pointer, I used AI to assist me with writing the commit, but I personally verify it the shutdown is not found by python3 -c "import multiprocessing; q = multiprocessing.Queue(); q.shutdown()" |
Sorry, something went wrong.
|
The fix looks good to me |
Sorry, something went wrong.
…hods (pythonGH-147970) The multiprocessing.Queue documentation states it implements all methods of queue.Queue except task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, multiprocessing.Queue also does not implement it. Update the docs to include shutdown() in the list of excluded methods. (cherry picked from commit 22290ed) Co-authored-by: WYSIATI <chester.lee.cold@gmail.com>
|
GH-148416 is a backport of this pull request to the 3.14 branch. |
Sorry, something went wrong.
…hods (pythonGH-147970) The multiprocessing.Queue documentation states it implements all methods of queue.Queue except task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, multiprocessing.Queue also does not implement it. Update the docs to include shutdown() in the list of excluded methods. (cherry picked from commit 22290ed) Co-authored-by: WYSIATI <chester.lee.cold@gmail.com>
|
GH-148417 is a backport of this pull request to the 3.13 branch. |
Sorry, something went wrong.
…thods (GH-147970) (#148416) gh-147965: Add shutdown() to multiprocessing.Queue excluded methods (GH-147970) The multiprocessing.Queue documentation states it implements all methods of queue.Queue except task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, multiprocessing.Queue also does not implement it. Update the docs to include shutdown() in the list of excluded methods. (cherry picked from commit 22290ed) Co-authored-by: WYSIATI <chester.lee.cold@gmail.com>
…thods (GH-147970) (#148417) gh-147965: Add shutdown() to multiprocessing.Queue excluded methods (GH-147970) The multiprocessing.Queue documentation states it implements all methods of queue.Queue except task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, multiprocessing.Queue also does not implement it. Update the docs to include shutdown() in the list of excluded methods. (cherry picked from commit 22290ed) Co-authored-by: WYSIATI <chester.lee.cold@gmail.com>
…hods (pythonGH-147970) The multiprocessing.Queue documentation states it implements all methods of queue.Queue except task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, multiprocessing.Queue also does not implement it. Update the docs to include shutdown() in the list of excluded methods.
| Back | FazBrowse Home | New Git URL |
Closes #147965.
The multiprocessing.Queue documentation states it implements all methods of queue.Queue except for task_done() and join(). Since queue.Queue.shutdown() was added in Python 3.13, and multiprocessing.Queue does not implement it either, this PR adds shutdown() to the list of excluded methods.
Changes
📚 Documentation preview 📚: https://cpython-previews--147970.org.readthedocs.build/