[Python-checkins] r87714 - python/branches/py3k/Lib/test/test_subprocess.py

antoine.pitrou python-checkins at python.org
Mon Jan 3 23:24:52 CET 2011


Author: antoine.pitrou
Date: Mon Jan  3 23:24:52 2011
New Revision: 87714

Log:
Add some more output



Modified:
   python/branches/py3k/Lib/test/test_subprocess.py

Modified: python/branches/py3k/Lib/test/test_subprocess.py
==============================================================================
--- python/branches/py3k/Lib/test/test_subprocess.py	(original)
+++ python/branches/py3k/Lib/test/test_subprocess.py	Mon Jan  3 23:24:52 2011
@@ -1156,6 +1156,9 @@
 
         open_fds = set()
 
+        if support.verbose:
+            print(" -- maxfd =", subprocess.MAXFD)
+
         for x in range(5):
             fds = os.pipe()
             self.addCleanup(os.close, fds[0])


More information about the Python-checkins mailing list