Py2.4 fix, no need to join the process pool in the error termination case
authorStefan Behnel <stefan_ml@behnel.de>
Sun, 11 Aug 2013 11:04:32 +0000 (13:04 +0200)
committerStefan Behnel <stefan_ml@behnel.de>
Sun, 11 Aug 2013 11:04:32 +0000 (13:04 +0200)
Cython/Build/Cythonize.py

index 93a6134..f702693 100644 (file)
@@ -112,8 +112,6 @@ def cython_compile(path_pattern, options):
     else:
         if pool is not None:
             pool.close()
-    finally:
-        if pool is not None:
             pool.join()