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 jrunyon
Recipients docs@python, jrunyon
Date 2015-05-21.06:29:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432189781.3.0.318420798275.issue24256@psf.upfronthosting.co.za>
In-reply-to
Content
the documentation (https://docs.python.org/2/library/threading.html#threading.Timer) lists "threading.Timer" as a class. It is not, which means that (for example) you can not use it in isinstance(). "threading._Timer" is a class. "threading.Timer(...).__class__" is a class. "threading.Timer" is a function.

>>> import threading
>>> threading.Timer
<function Timer at 0x7f99cae23848>
History
Date User Action Args
2015-05-21 06:29:41jrunyonsetrecipients: + jrunyon, docs@python
2015-05-21 06:29:41jrunyonsetmessageid: <1432189781.3.0.318420798275.issue24256@psf.upfronthosting.co.za>
2015-05-21 06:29:41jrunyonlinkissue24256 messages
2015-05-21 06:29:41jrunyoncreate