diff options
author | slateny <46876382+slateny@users.noreply.github.com> | 2022-04-14 08:23:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-14 08:23:57 (GMT) |
commit | 0fc3517cf46ec79b4681c31916d4081055a7ed09 (patch) | |
tree | 29e469d2a54bb22310b53b12c2eee55287fa7ed0 /Doc/library/queue.rst | |
parent | 13b17e2a0a56d506d62a0bf2774e3deb4cbaeb72 (diff) | |
download | cpython-0fc3517cf46ec79b4681c31916d4081055a7ed09.zip cpython-0fc3517cf46ec79b4681c31916d4081055a7ed09.tar.gz cpython-0fc3517cf46ec79b4681c31916d4081055a7ed09.tar.bz2 |
gh-90879: Fix missing parameter for put_nowait() (GH-91514)
Diffstat (limited to 'Doc/library/queue.rst')
-rw-r--r-- | Doc/library/queue.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index cbf27d2..540dde9 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -138,7 +138,7 @@ provide the public methods described below. .. method:: Queue.put_nowait(item) - Equivalent to ``put(item, False)``. + Equivalent to ``put(item, block=False)``. .. method:: Queue.get(block=True, timeout=None) @@ -248,7 +248,7 @@ SimpleQueue Objects .. method:: SimpleQueue.put_nowait(item) - Equivalent to ``put(item)``, provided for compatibility with + Equivalent to ``put(item, block=False)``, provided for compatibility with :meth:`Queue.put_nowait`. |