diff options
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index eebe10a9c0..b7b702323b 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -535,7 +535,8 @@ class Thread(_Verbose): # test_threading.test_no_refcycle_through_target when # the exception keeps the target alive past when we # assert that it's dead. - self.__exc_clear() + # XXX Temporary experiment + # self.__exc_clear() finally: with _active_limbo_lock: self.__stop() |