[issue33621] repr(threading._DummyThread) always fails.

2018-05-24 Thread Fabio Zadrozny
Fabio Zadrozny added the comment: Actually, I tried on a more recent version of Python 3.6 (3.6.5) and it doesn't happen there (so, just happens in 3.6.0 -- i.e.: in the old conda env I had around). Sorry for the noise. Closing issue as it's already fixed.

[issue33621] repr(threading._DummyThread) always fails.

2018-05-24 Thread Fabio Zadrozny
Fabio Zadrozny added the comment: Python 3.6.0 |Continuum Analytics, Inc.| (default, Dec 23 2016, 11:57:41) [MSC v.1900 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import threading >>>

[issue33621] repr(threading._DummyThread) always fails.

2018-05-24 Thread Antoine Pitrou
Antoine Pitrou added the comment: Can you post the actual exception you are getting? Here I have: >>> import threading >>> repr(threading._DummyThread()) '<_DummyThread(Dummy-1, started daemon 140345620215552)>' -- nosy: +pitrou

[issue33621] repr(threading._DummyThread) always fails.

2018-05-23 Thread Fabio Zadrozny
New submission from Fabio Zadrozny : Doing the following throws an exception: import threading repr(threading._DummyThread()) Or, in a more contrived example (I actually had this in a QThread, so, reproducing using getting the current_thread using a thread