cpython: 222505a5aeac (original) (raw)

--- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -157,16 +157,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 @@ -406,9 +417,22 @@ class ProcessTestCase(BaseTestCase): def test_stdout_filedes_of_stdout(self): # stdout is set to 1 (#1531862).

def test_env(self): newenv = os.environ.copy()

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