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 georg.brandl
Recipients eric.smith, georg.brandl, newtodisworld
Date 2011-07-10.13:22:37
SpamBayes Score 3.1805746e-06
Marked as misclassified No
Message-id <1310304158.25.0.46792496224.issue12525@psf.upfronthosting.co.za>
In-reply-to
Content
While it's not explicitly documented that run() also shouldn't be called multiple times, it does not need to be supported.  Threads can be started exactly once -- this is already mentioned in the docs.

Note that run() simply calls the thread target with the given args.  Calling thread.run() instead is just a more confusing way of doing this.
History
Date User Action Args
2011-07-10 13:22:38georg.brandlsetrecipients: + georg.brandl, eric.smith, newtodisworld
2011-07-10 13:22:38georg.brandlsetmessageid: <1310304158.25.0.46792496224.issue12525@psf.upfronthosting.co.za>
2011-07-10 13:22:37georg.brandllinkissue12525 messages
2011-07-10 13:22:37georg.brandlcreate