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 zuo
Recipients zuo
Date 2013-08-27.21:27:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377638843.21.0.0472654933915.issue18858@psf.upfronthosting.co.za>
In-reply-to
Content
In Python 3.3 threading.get_ident() has been added as a public and documented function, but there is no dummy_threading.get_ident():

    >>> import threading, dummy_threading
    >>> threading.get_ident()
    139974728402752
    >>> dummy_threading.get_ident()
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    AttributeError: 'module' object has no attribute 'get_ident'

By the way: it may be worth to check for other possible inconsistencies between avaliable interfaces of threading and dummy_threading.
History
Date User Action Args
2013-08-27 21:27:23zuosetrecipients: + zuo
2013-08-27 21:27:23zuosetmessageid: <1377638843.21.0.0472654933915.issue18858@psf.upfronthosting.co.za>
2013-08-27 21:27:23zuolinkissue18858 messages
2013-08-27 21:27:22zuocreate