New submission from Andrii V. Mishkovskyi <[EMAIL PROTECTED]>: 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 <[EMAIL PROTECTED]> <http://bugs.python.org/issue3256> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com