diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-23 20:16:07 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-11-23 20:16:07 (GMT) |
commit | 82e60de7277a9dc569c983d913a24b870c3ee2b8 (patch) | |
tree | e7bda6745a93ef04f048cdfc6a0d6e119daefb4a /Lib | |
parent | ba4d8ed8f8d4fb999cdff94db7d6277d4a2042ac (diff) | |
download | cpython-82e60de7277a9dc569c983d913a24b870c3ee2b8.zip cpython-82e60de7277a9dc569c983d913a24b870c3ee2b8.tar.gz cpython-82e60de7277a9dc569c983d913a24b870c3ee2b8.tar.bz2 |
Remove debug print.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_cmd_line.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_cmd_line.py b/Lib/test/test_cmd_line.py index e12f305..c10bd76 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) |