From: Jack Harper Date: Tue, 23 Jun 2026 11:29:20 +0000 (+0100) Subject: Clarify `multiprocessing.Queue.get_nowait()` documentation (#150863) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ac16110470bd8dc0394a42fd30cfb99fa58f5d4;p=thirdparty%2FPython%2Fcpython.git Clarify `multiprocessing.Queue.get_nowait()` documentation (#150863) --- diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index f5326aff7236..79da2a3db719 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -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.