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 abaron
Recipients abaron
Date 2009-05-03.11:50:26
SpamBayes Score 3.7078522e-09
Marked as misclassified No
Message-id <1241351428.83.0.293714766412.issue5912@psf.upfronthosting.co.za>
In-reply-to
Content
While running 2 or more threads, if one thread is importing anything
(i.e. has the import lock) and the other thread runs fork and then the
child process runs import then the child and parent will hang forever
(the child waits on the import lock but the parent receives the signal).
see Issue1590864 for another example of this.
Following is a simple way to reproduce this behavior:

mysleep.py:
import time
time.sleep(1)

run_me_and_hang.py:
import os
import threading
import subprocess
class F(threading.Thread):
	def run(self):
		import mysleep
		print "f is out"
f = F()
f.start()
a = subprocess.call(["echo", "DONE"])
print "exit"
History
Date User Action Args
2009-05-03 11:50:29abaronsetrecipients: + abaron
2009-05-03 11:50:28abaronsetmessageid: <1241351428.83.0.293714766412.issue5912@psf.upfronthosting.co.za>
2009-05-03 11:50:27abaronlinkissue5912 messages
2009-05-03 11:50:26abaroncreate