[New-bugs-announce] [issue18858] dummy_threading lacks threading.get_ident() equivalent

Jan Kaliszewski report at bugs.python.org
Tue Aug 27 23:27:23 CEST 2013


New submission from Jan Kaliszewski:

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.

----------
components: Library (Lib)
messages: 196321
nosy: zuo
priority: normal
severity: normal
status: open
title: dummy_threading lacks threading.get_ident() equivalent
type: behavior
versions: Python 3.3, Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue18858>
_______________________________________


More information about the New-bugs-announce mailing list