Message8736

Author zyasoft
Recipients fwierzbicki, pjenvey, zyasoft
Date 2014-06-19.07:16:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403162210.72.0.831291977962.issue1279@psf.upfronthosting.co.za>
In-reply-to
Content
Per docs:

This module provides a duplicate interface to the threading module. It is meant to be imported when the thread module is not provided on a platform.

Suggested usage is:

try:
    import threading as _threading
except ImportError:
    import dummy_threading as _threading

This has not come up as an issue other than by use core devs. Rewriting threading so it can be used by dummy_threading up to some ImportError doesn't make sense. Time to close out!
History
Date User Action Args
2014-06-19 07:16:50zyasoftsetmessageid: <1403162210.72.0.831291977962.issue1279@psf.upfronthosting.co.za>
2014-06-19 07:16:50zyasoftsetrecipients: + zyasoft, fwierzbicki, pjenvey
2014-06-19 07:16:50zyasoftlinkissue1279 messages
2014-06-19 07:16:50zyasoftcreate