[New-bugs-announce] [issue3256] Multiprocessing docs are not 3.0-ready

Andrii V. Mishkovskyi report at bugs.python.org
Wed Jul 2 15:32:19 CEST 2008


New submission from Andrii V. Mishkovskyi <mishok13 at gmail.com>:

Multiprocessing docs contain examples, that are not valid py3k code,
mostly because of print used as a statement. Example (taken from
multiprocessing.rst):

from multiprocessing import Process

def f(name):
    print 'hello', name

if __name__ == '__main__':
    p = Process(target=f, args=('bob',))
    p.start()
    p.join()

If no one is working on this already, than I'll start fixing this and
will present a patch in 2 or 3 days.

----------
assignee: georg.brandl
components: Documentation
messages: 69090
nosy: georg.brandl, jnoller, mishok13, roudkerk
severity: normal
status: open
title: Multiprocessing docs are not 3.0-ready
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3256>
_______________________________________


More information about the New-bugs-announce mailing list