This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: SimpleQueue.put_nowait() documentation error
Type: behavior Stage:
Components: Documentation Versions:
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: antonycardazzi, docs@python
Priority: normal Keywords:

Created on 2022-02-11 17:12 by antonycardazzi, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg413087 - (view) Author: Antony Cardazzi (antonycardazzi) Date: 2022-02-11 17:12
SimpleQueue.put_nowait(item) documentation says it is equivalent to SimpleQueue.put(item) when it's actually equivalent to Simple que.put(item, block=False)
History
Date User Action Args
2022-04-11 14:59:56adminsetgithub: 90879
2022-02-11 17:12:33antonycardazzicreate