From f21b2aafa9b78891b568264a32f40ee8a8384aa1 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 28 Dec 2001 22:07:09 +0000 Subject: Thread.__bootstrap(): ignore exceptions in the self.__delete() call in the finally clause. An exception here could happen when a daemon thread exits after the threading module has already been trashed by the import finalization, and there's not much of a point in trying to insist doing the cleanup in that stage. This should fix SF bug ##497111: active_limbo_lock error at program exit. 2.1.2 and 2.2.1 Bugfix candidate! --- Lib/threading.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index fbf40cd..6543cc3 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -421,7 +421,10 @@ class Thread(_Verbose): self._note("%s.__bootstrap(): normal return", self) finally: self.__stop() - self.__delete() + try: + self.__delete() + except: + pass def __stop(self): self.__block.acquire() -- cgit v0.12