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: Multiprocessing documentation mentions function that doesn't exist
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 3.4, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: Topher.Brown, docs@python, ezio.melotti, python-dev, sbt
Priority: normal Keywords:

Created on 2013-03-06 00:38 by Topher.Brown, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg183566 - (view) Author: Topher Brown (Topher.Brown) Date: 2013-03-06 00:38
multiprocessing documentation (http://docs.python.org/2/library/multiprocessing.html#pipes-and-queues) for multiprocessing.Queue mentions Queue.get_no_wait() as an alias for Queue.get_nowait(). This function does not seem to exist.
msg183569 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-03-06 01:24
New changeset 01a8fcc91d5a by Ezio Melotti in branch '2.7':
#17364: remove documentation for a function that does not exist.
http://hg.python.org/cpython/rev/01a8fcc91d5a

New changeset 4f9de1b18cab by Ezio Melotti in branch '3.2':
#17364: remove documentation for a function that does not exist.
http://hg.python.org/cpython/rev/4f9de1b18cab

New changeset 5e294202f93e by Ezio Melotti in branch '3.3':
#17364: merge with 3.2.
http://hg.python.org/cpython/rev/5e294202f93e

New changeset b87e9b8dc9ad by Ezio Melotti in branch 'default':
#17364: merge with 3.3.
http://hg.python.org/cpython/rev/b87e9b8dc9ad
msg183570 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-03-06 01:25
Fixed, thanks for the report!
History
Date User Action Args
2022-04-11 14:57:42adminsetgithub: 61566
2013-03-06 01:25:22ezio.melottisetstatus: open -> closed

type: enhancement
assignee: docs@python -> ezio.melotti
versions: + Python 3.2, Python 3.3, Python 3.4
nosy: + ezio.melotti

messages: + msg183570
resolution: fixed
stage: resolved
2013-03-06 01:24:07python-devsetnosy: + python-dev
messages: + msg183569
2013-03-06 00:48:40sbtsetnosy: + sbt
2013-03-06 00:38:17Topher.Browncreate