From da642dea03813ad6c81e5581f7ffe65036a609c6 Mon Sep 17 00:00:00 2001 From: Jack Harper Date: Wed, 3 Jun 2026 15:41:33 +0100 Subject: [PATCH] make get_nowait() consistant with put_nowait() description --- 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 f5326aff7236bd6..79da2a3db719e78 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.