From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 7 Nov 2018 22:39:21 +0000 (-0800) Subject: Fix the construction of subprocess.CalledProcessError in test_venv (GH-10400) X-Git-Tag: v3.7.2rc1~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b097f9fe2b359f8b64c030db51cfa2930c26971b;p=thirdparty%2FPython%2Fcpython.git Fix the construction of subprocess.CalledProcessError in test_venv (GH-10400) The constructor of subprocess.CalledProcessError in the check_output function had an extra None in it. (cherry picked from commit b93925047a025511c48a7bf3e6e6f0cfec79b8ed) Co-authored-by: Pablo Galindo --- diff --git a/Lib/test/test_venv.py b/Lib/test/test_venv.py index c86f7a1a07ae..461fe7afd213 100644 --- a/Lib/test/test_venv.py +++ b/Lib/test/test_venv.py @@ -35,7 +35,7 @@ def check_output(cmd, encoding=None): out, err = p.communicate() if p.returncode: raise subprocess.CalledProcessError( - p.returncode, cmd, None, out, err) + p.returncode, cmd, out, err) return out, err class BaseTest(unittest.TestCase):