From 2ac16110470bd8dc0394a42fd30cfb99fa58f5d4 Mon Sep 17 00:00:00 2001 From: Jack Harper Date: Tue, 23 Jun 2026 12:29:20 +0100 Subject: [PATCH] Clarify `multiprocessing.Queue.get_nowait()` documentation (#150863) --- Doc/library/queue.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index f5326aff723..79da2a3db71 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.