10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-09-01 17:23:42 +02:00

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() file.close()
if fork == 0: if fork == 0:
sys.exit(0) os._exit(0)
for i in xrange(1,NTHREADS): for i in xrange(1,NTHREADS):
if os.waitpid(pidlist[i],0)[1] != 0: if os.waitpid(pidlist[i],0)[1] != 0:
sys.exit(0) os._exit(0)
result = [] result = []
for filename,text in source: for filename,text in source:

View File

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