From ec79dd2b57b0ac39dc42dd8a4bcc80f2a0bdabc0 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sun, 25 Mar 2018 23:14:19 +1000 Subject: [PATCH] bpo-33053: Remove test_cmd_line_script debugging print 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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 17620085500800..a9c1309ad6d32b 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -125,8 +125,6 @@ def _check_script(self, script_exec_args, expected_file, 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 )