summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2012-11-23 20:16:07 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2012-11-23 20:16:07 (GMT)
commit82e60de7277a9dc569c983d913a24b870c3ee2b8 (patch)
treee7bda6745a93ef04f048cdfc6a0d6e119daefb4a /Lib
parentba4d8ed8f8d4fb999cdff94db7d6277d4a2042ac (diff)
downloadcpython-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.py4
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)