diff options
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index f2d28f40b8..eebe10a9c0 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -535,9 +535,7 @@ 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. - # XXX Temporary experiment - # self.__exc_clear() - pass + self.__exc_clear() finally: with _active_limbo_lock: self.__stop() |