From: Kristján Valur Jónsson Date: Wed, 20 Mar 2013 00:30:30 +0000 (-0700) Subject: Issue #12098 : Fix a missing import in the unittests. X-Git-Tag: v2.7.4rc1~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=acb6e85808ec2a4522c1e7cf665c85c02edf16ab;p=thirdparty%2FPython%2Fcpython.git Issue #12098 : Fix a missing import in the unittests. --- diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index b3076c1cfd44..33de78818034 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -1344,6 +1344,7 @@ def py3k_bytes(b): def args_from_interpreter_flags(): """Return a list of command-line arguments reproducing the current settings in sys.flags.""" + import subprocess return subprocess._args_from_interpreter_flags() def strip_python_stderr(stderr):