This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients Dustin.Kirkland, cooyeah, pitrou, sbt
Date 2012-04-19.13:19:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1334841578.13.0.578193901771.issue14308@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, could you try applying the following patch to threading.py?


diff --git a/Lib/threading.py b/Lib/threading.py
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -887,7 +887,7 @@ def _after_fork():
                 ident = _get_ident()
                 thread._Thread__ident = ident
                 new_active[ident] = thread
-            else:
+            elif not isinstance(thread, _DummyThread):
                 # All the others are already stopped.
                 thread._Thread__stop()
History
Date User Action Args
2012-04-19 13:19:38pitrousetrecipients: + pitrou, cooyeah, sbt, Dustin.Kirkland
2012-04-19 13:19:38pitrousetmessageid: <1334841578.13.0.578193901771.issue14308@psf.upfronthosting.co.za>
2012-04-19 13:19:37pitroulinkissue14308 messages
2012-04-19 13:19:37pitroucreate