[issue17364] Multiprocessing documentation mentions function that doesn't exist

2013-03-05 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed, thanks for the report! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement versions: +Python 3.2, Python 3.3, Python 3.4 _

[issue17364] Multiprocessing documentation mentions function that doesn't exist

2013-03-05 Thread Roundup Robot
Roundup Robot added the comment: 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

[issue17364] Multiprocessing documentation mentions function that doesn't exist

2013-03-05 Thread Richard Oudkerk
Changes by Richard Oudkerk : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue17364] Multiprocessing documentation mentions function that doesn't exist

2013-03-05 Thread Topher Brown
New submission from Topher Brown: 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. -- assignee: docs@p