cpython: d25749c32bb4 (original) (raw)

--- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -150,16 +150,27 @@ class ProcessTestCase(BaseTestCase): self.assertEqual(p.stdin, None) def test_stdout_none(self):

def test_stderr_none(self): # .stderr is None when not redirected @@ -308,9 +319,22 @@ class ProcessTestCase(BaseTestCase): def test_stdout_filedes_of_stdout(self): # stdout is set to 1 (#1531862).

def test_cwd(self): tmpdir = tempfile.gettempdir()

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -812,6 +812,8 @@ Extension Modules Tests ----- +- Issue #11963: remove human verification from test_parser and test_subprocess. +