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: Convert documentation to python 3.
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: LambertDW, georg.brandl
Priority: normal Keywords:

Created on 2008-09-29 05:21 by LambertDW, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg74009 - (view) Author: David W. Lambert (LambertDW) Date: 2008-09-29 05:21
http://docs.python.org/dev/3.0/library/multiprocessing.html#module-
multiprocessing

uses "print" statement in pre-version 3 form.  I can easily imagine 
that this and similar 2to3 bugs pervade the manual.


(If I insisted on foolish consistency I'd point out also that the 
multiprocessing guidelines recommend joining all processes started, 
but that a few items later under "joining processes that use queues" 
hides the parenthetical remark

"... (or simply remove the p.join() line).")


At any rate, I'm looking forward to the 3.0 release.  And I'm thrilled 
that the library modules seem to be evolving toward lumps that are 
commonly used together.
msg74012 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-09-29 06:43
Thanks, fixed the prints in r66680.

The multiprocessing docs are a special case because they arrived after
we "upgraded" examples in the documentation to Python 3.0 code.
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48243
2008-09-29 06:43:55georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg74012
2008-09-29 05:21:23LambertDWcreate