]> granicus.if.org Git - python/commitdiff
bpo-33053: Remove test_cmd_line_script debugging print (GH-6237)
authorNick Coghlan <ncoghlan@gmail.com>
Sun, 25 Mar 2018 13:47:54 +0000 (23:47 +1000)
committerGitHub <noreply@github.com>
Sun, 25 Mar 2018 13:47:54 +0000 (23:47 +1000)
I noticed this had slipped into the original commit when
resolving a merge conflict for the backport to 3.7.

Lib/test/test_cmd_line_script.py

index 176200855008003995603acd6fd73e504c1bbff4..a9c1309ad6d32beac64a2cf2037b3d50d2c253a6 100644 (file)
@@ -125,8 +125,6 @@ class CmdLineTest(unittest.TestCase):
             script_exec_args = [script_exec_args]
         run_args = [*support.optim_args_from_interpreter_flags(),
                     *cmd_line_switches, *script_exec_args, *example_args]
-        if env_vars:
-            print(env_vars)
         rc, out, err = assert_python_ok(
             *run_args, __isolated=False, __cwd=cwd, **env_vars
         )