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 LambertDW
Recipients LambertDW, georg.brandl
Date 2010-04-08.01:18:00
SpamBayes Score 0.07406197
Marked as misclassified No
Message-id <1270689483.48.0.0642742972458.issue8341@psf.upfronthosting.co.za>
In-reply-to
Content
http://docs.python.org/py3k/library/multiprocessing.html

Indentation is incorrect as displayed and copied from google chrome browser:


 from multiprocessing import Process

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

 if __name__ == '__main__':
     p = Process(target=f, args=('bob',))
     p.start()
     p.join()
History
Date User Action Args
2010-04-08 01:18:03LambertDWsetrecipients: + LambertDW, georg.brandl
2010-04-08 01:18:03LambertDWsetmessageid: <1270689483.48.0.0642742972458.issue8341@psf.upfronthosting.co.za>
2010-04-08 01:18:01LambertDWlinkissue8341 messages
2010-04-08 01:18:00LambertDWcreate