Author: Armin Rigo <[email protected]>
Branch: cffi-1.0
Changeset: r1980:c7a22595754b
Date: 2015-05-12 10:15 +0200
http://bitbucket.org/cffi/cffi/changeset/c7a22595754b/
Log: Hum, we need to close manually the subprocess.PIPE it seems
diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -23,6 +23,7 @@
raise
else:
t = p.stdout.read().decode().strip()
+ p.stdout.close()
if p.wait() == 0:
res = t.split()
# '-I/usr/...' -> '/usr/...'
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit