From: Antoine Pitrou Date: Mon, 3 Jan 2011 22:24:52 +0000 (+0000) Subject: Add some more output X-Git-Tag: v3.2rc1~212 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dcdc3b4c5d2fa0522564032359f0f92146670d5e;p=thirdparty%2FPython%2Fcpython.git Add some more output --- diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py index 68fa70bbffdb..cf6684d816bc 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])