summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-05-31 23:57:48 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-05-31 23:57:48 (GMT)
commite9b185f26318e7ff34bd8ec36a509cd85106d696 (patch)
tree0b42662d4e050aa54fedf8a3a46d2f38e03b1695
parent776e69b5b37a9f0678f2759c145ed26368aaba3f (diff)
downloadcpython-e9b185f26318e7ff34bd8ec36a509cd85106d696.zip
cpython-e9b185f26318e7ff34bd8ec36a509cd85106d696.tar.gz
cpython-e9b185f26318e7ff34bd8ec36a509cd85106d696.tar.bz2
Issue #12085: Fix test_subprocess for my previous commit
Replace support by test_support, and add captured_stderr() function.
-rw-r--r--Lib/test/test_subprocess.py2
-rw-r--r--Lib/test/test_support.py3
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
index 73c1b5c..a93602a 100644
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -116,7 +116,7 @@ class ProcessTestCase(BaseTestCase):
def test_invalid_args(self):
# Popen() called with invalid arguments should raise TypeError
# but Popen.__del__ should not complain (issue #12085)
- with support.captured_stderr() as s:
+ with test_support.captured_stderr() as s:
self.assertRaises(TypeError, subprocess.Popen, invalid_arg_name=1)
argcount = subprocess.Popen.__init__.__code__.co_argcount
too_many_args = [0] * (argcount + 1)
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py
index 81bb3ca..de56e9e 100644
--- a/Lib/test/test_support.py
+++ b/Lib/test/test_support.py
@@ -833,6 +833,9 @@ def captured_stdout():
"""
return captured_output("stdout")
+def captured_stderr():
+ return captured_output("stderr")
+
def captured_stdin():
return captured_output("stdin")