From 82e60de7277a9dc569c983d913a24b870c3ee2b8 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 23 Nov 2012 22:16:07 +0200 Subject: [PATCH] Remove debug print. --- Lib/test/test_cmd_line.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py index e12f3055424..c10bd761ac3 100644 --- a/Lib/test/test_cmd_line.py +++ b/Lib/test/test_cmd_line.py @@ -104,10 +104,6 @@ class CmdLineTest(unittest.TestCase): 'need a filesystem encoding different than ASCII') def test_non_ascii(self): # Test handling of non-ascii data - if test.support.verbose: - import locale - print('locale encoding = %s, filesystem encoding = %s' - % (locale.getpreferredencoding(), sys.getfilesystemencoding())) command = "assert(ord('\xe9') == 0xe9)" assert_python_ok('-c', command)