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.
| Author | mishok13 |
|---|---|
| Recipients | georg.brandl, jnoller, mishok13, roudkerk |
| Date | 2008年07月02日.13:32:17 |
| SpamBayes Score | 0.0007392366 |
| Marked as misclassified | No |
| Message-id | <1215005539.48.0.894176779867.issue3256@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
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. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2008年07月02日 13:32:20 | mishok13 | set | spambayes_score: 0.000739237 -> 0.0007392366 recipients: + mishok13, georg.brandl, roudkerk, jnoller |
| 2008年07月02日 13:32:19 | mishok13 | set | spambayes_score: 0.000739237 -> 0.000739237 messageid: <1215005539.48.0.894176779867.issue3256@psf.upfronthosting.co.za> |
| 2008年07月02日 13:32:18 | mishok13 | link | issue3256 messages |
| 2008年07月02日 13:32:17 | mishok13 | create | |