Clarify multiprocessing.Queue.get_nowait() documentation (#150863)

This commit is contained in:
Jack Harper 2026-06-23 12:29:20 +01:00 committed by GitHub
parent da99711d37
commit 2ac1611047
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -173,7 +173,7 @@ provide the public methods described below.
.. method:: Queue.get_nowait()
Equivalent to ``get(False)``.
Equivalent to ``get(block=False)``.
Two methods are offered to support tracking whether enqueued tasks have been
fully processed by daemon consumer threads.