[issue5912] import deadlocks when using fork

2009-05-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: 2.4 is no longer supported. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker ___ ___

[issue5912] import deadlocks when using fork

2009-05-14 Thread Alan Pevec
Alan Pevec added the comment: Issue is not reproducible with python 2.5, following patch fixes it on python 2.4: --- os.py-2.4 2009-05-14 12:54:08.0 + +++ os.py 2009-05-14 13:06:21.0 + @@ -351,8 +351,8 @@ __all__.extend(["execl","execle","execlp","execlpe","execvp","ex

[issue5912] import deadlocks when using fork

2009-05-05 Thread Stefan Ring
Changes by Stefan Ring : -- nosy: +Ringding ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue5912] import deadlocks when using fork

2009-05-03 Thread ayal baron
New submission from ayal baron : 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 rec