[issue18858] dummy_threading lacks threading.get_ident() equivalent

2019-12-31 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> wont fix stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2019-12-31 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: dummy_threading was removed in Python 3.9 with issue37312 . I hope this issue can be closed as outdated. -- nosy: +inada.naoki, xtreak ___ Python tracker

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2016-07-14 Thread Berker Peksag
Berker Peksag added the comment: > This patch adds a test but does not fix the bug. I forgot to explain what the first patch does. The specific problem reported by OP has already been fixed in default branch (but not in 3.5) so issue18858.diff was added a test to make sure that threading and

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2016-07-10 Thread R. David Murray
R. David Murray added the comment: A forgotten issue marked commit review. I guess we aren't checking the commit review queue very carefully; I certainly haven't been :(. This patch adds a test but does not fix the bug. The assert should have a message parameter like the existing use of it

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2016-01-20 Thread Brett Cannon
Changes by Brett Cannon : -- assignee: -> berker.peksag stage: patch review -> commit review ___ Python tracker ___

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2016-01-20 Thread Berker Peksag
Berker Peksag added the comment: dummy_threading.get_ident() works for me: >>> import dummy_threading as dt >>> dt.get_ident() -1 >>> import threading >>> threading.get_ident() 140498493105920 Here is a patch to compare threading and dummy_threading modules. --

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2013-08-30 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +haypo ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18858 ___ ___ Python-bugs-list

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2013-08-28 Thread Brett Cannon
Brett Cannon added the comment: There should actually be a test to catch the inconsistencies. -- nosy: +brett.cannon stage: - test needed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18858

[issue18858] dummy_threading lacks threading.get_ident() equivalent

2013-08-27 Thread Jan Kaliszewski
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()