Remove debug print.

This commit is contained in:
Ezio Melotti 2012-11-23 22:16:07 +02:00
parent ba4d8ed8f8
commit 82e60de727

View file

@ -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)