summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-24 23:34:03 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-24 23:34:03 (GMT)
commit09ce2786e4a7a9ea2be32856f4db327f0b72d6cd (patch)
tree6f0c5eaeb3661a407c3475fabdde042b6b68bdb8 /Lib
parent15fa1c4ade79060e340a656e1f69c70ebe355171 (diff)
parentb0749ca933a6806cfa81d22718bde69409154654 (diff)
downloadcpython-09ce2786e4a7a9ea2be32856f4db327f0b72d6cd.zip
cpython-09ce2786e4a7a9ea2be32856f4db327f0b72d6cd.tar.gz
cpython-09ce2786e4a7a9ea2be32856f4db327f0b72d6cd.tar.bz2
Fixed bytes warnings when run tests with -vv.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_cmd_line_script.py10
-rw-r--r--Lib/test/test_multiprocessing_main_handling.py2
2 files changed, 6 insertions, 6 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py
index 88a9e2b..7350164 100644
--- a/Lib/test/test_cmd_line_script.py
+++ b/Lib/test/test_cmd_line_script.py
@@ -114,7 +114,7 @@ class CmdLineTest(unittest.TestCase):
expected_loader):
if verbose > 1:
print("Output from test script %r:" % script_name)
- print(data)
+ print(repr(data))
self.assertEqual(exit_code, 0)
printed_loader = '__loader__==%a' % expected_loader
printed_file = '__file__==%a' % expected_file
@@ -153,7 +153,7 @@ class CmdLineTest(unittest.TestCase):
rc, out, err = assert_python_failure(*run_args)
if verbose > 1:
print('Output from test script %r:' % script_name)
- print(err)
+ print(repr(err))
print('Expected output: %r' % expected_msg)
self.assertIn(expected_msg.encode('utf-8'), err)
@@ -362,7 +362,7 @@ class CmdLineTest(unittest.TestCase):
script_name = _make_test_script(pkg_dir, 'script')
rc, out, err = assert_python_ok('-m', 'test_pkg.script', *example_args, __isolated=False)
if verbose > 1:
- print(out)
+ print(repr(out))
expected = "init_argv0==%r" % '-m'
self.assertIn(expected.encode('utf-8'), out)
self._check_output(script_name, rc, out,
@@ -380,7 +380,7 @@ class CmdLineTest(unittest.TestCase):
'import sys; print("sys.path[0]==%r" % sys.path[0])',
__isolated=False)
if verbose > 1:
- print(out)
+ print(repr(out))
expected = "sys.path[0]==%r" % ''
self.assertIn(expected.encode('utf-8'), out)
@@ -410,7 +410,7 @@ class CmdLineTest(unittest.TestCase):
"if __name__ == '__main__': raise ValueError")
rc, out, err = assert_python_failure('-m', 'test_pkg.other', *example_args)
if verbose > 1:
- print(out)
+ print(repr(out))
self.assertEqual(rc, 1)
def test_pep_409_verbiage(self):
diff --git a/Lib/test/test_multiprocessing_main_handling.py b/Lib/test/test_multiprocessing_main_handling.py
index 97539e0..de5f782 100644
--- a/Lib/test/test_multiprocessing_main_handling.py
+++ b/Lib/test/test_multiprocessing_main_handling.py
@@ -143,7 +143,7 @@ class MultiProcessingCmdLineMixin():
def _check_output(self, script_name, exit_code, out, err):
if verbose > 1:
print("Output from test script %r:" % script_name)
- print(out)
+ print(repr(out))
self.assertEqual(exit_code, 0)
self.assertEqual(err.decode('utf-8'), '')
expected_results = "%s -> [1, 4, 9]" % self.start_method