Bug with recent versions of Python

Version:1.1.62

Version:1.1.63
This commit is contained in:
Anthony Scemama 2011-01-19 21:49:49 +01:00
parent b9849d2700
commit 4bf8e74490
2 changed files with 3 additions and 3 deletions

View File

@ -158,11 +158,11 @@ def parallel_loop(f,source):
file.close()
if fork == 0:
sys.exit(0)
os._exit(0)
for i in xrange(1,NTHREADS):
if os.waitpid(pidlist[i],0)[1] != 0:
sys.exit(0)
os._exit(0)
result = []
for filename,text in source:

View File

@ -1 +1 @@
version = "1.1.60"
version = "1.1.63"