summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-03 22:24:52 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-03 22:24:52 (GMT)
commitdcdc3b4c5d2fa0522564032359f0f92146670d5e (patch)
treee2bc6b8d5d879d82a5b34e8581e401da6a8ff998 /Lib/test
parentc43ec08bafd5d5fe62af2ed119e34ab33f17d05b (diff)
downloadcpython-dcdc3b4c5d2fa0522564032359f0f92146670d5e.zip
cpython-dcdc3b4c5d2fa0522564032359f0f92146670d5e.tar.gz
cpython-dcdc3b4c5d2fa0522564032359f0f92146670d5e.tar.bz2
Add some more output
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_subprocess.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 68fa70b..cf6684d 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -1156,6 +1156,9 @@ class POSIXProcessTestCase(BaseTestCase):
open_fds = set()
+ if support.verbose:
+ print(" -- maxfd =", subprocess.MAXFD)
+
for x in range(5):
fds = os.pipe()
self.addCleanup(os.close, fds[0])