diff options
-rw-r--r-- | Lib/test/test_sysconfig.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/test_sysconfig.py b/Lib/test/test_sysconfig.py index 606ccd0af0..59cba97f01 100644 --- a/Lib/test/test_sysconfig.py +++ b/Lib/test/test_sysconfig.py @@ -245,8 +245,7 @@ class TestSysConfig(unittest.TestCase): def get(python): cmd = [python, '-c', 'import sysconfig; print sysconfig.get_platform()'] - p = subprocess.Popen(cmd, stdout=subprocess.PIPE, - stderr=subprocess.PIPE) + p = subprocess.Popen(cmd, stdout=subprocess.PIPE) return p.communicate() real = os.path.realpath(sys.executable) link = os.path.abspath(TESTFN) |