Message158725
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() |
|
Date |
User |
Action |
Args |
2012-04-19 13:19:38 | pitrou | set | recipients:
+ pitrou, cooyeah, sbt, Dustin.Kirkland |
2012-04-19 13:19:38 | pitrou | set | messageid: <1334841578.13.0.578193901771.issue14308@psf.upfronthosting.co.za> |
2012-04-19 13:19:37 | pitrou | link | issue14308 messages |
2012-04-19 13:19:37 | pitrou | create | |
|