[Python-checkins] r81278 - in python/branches/release31-maint: Lib/test/test_sys.py
victor.stinner
python-checkins at python.org
Mon May 17 22:01:55 CEST 2010
Author: victor.stinner
Date: Mon May 17 22:01:55 2010
New Revision: 81278
Log:
Merged revisions 81276 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r81276 | victor.stinner | 2010-05-17 21:57:40 +0200 (lun., 17 mai 2010) | 4 lines
Fix test_main_invalid_unicode() of test_sys for ASCII locale encoding
It should fix sparc 3.x and 3.1 failures.
........
Modified:
python/branches/release31-maint/ (props changed)
python/branches/release31-maint/Lib/test/test_sys.py
Modified: python/branches/release31-maint/Lib/test/test_sys.py
==============================================================================
--- python/branches/release31-maint/Lib/test/test_sys.py (original)
+++ python/branches/release31-maint/Lib/test/test_sys.py Mon May 17 22:01:55 2010
@@ -145,7 +145,7 @@
stdout, stderr = process.communicate()
self.assertEqual(process.returncode, 1)
self.assertTrue(stderr.startswith(expected),
- "%r doesn't start with %r" % (stderr, expected))
+ "%s doesn't start with %s" % (ascii(stderr), ascii(expected)))
# test that stderr buffer if flushed before the exit message is written
# into stderr
@@ -439,9 +439,8 @@
p = subprocess.Popen([sys.executable, "-c", code], stderr=subprocess.PIPE)
stdout, stderr = p.communicate()
self.assertEqual(p.returncode, 1)
- self.assert_(stderr.startswith(b"UnicodeEncodeError: "
- b"'utf-8' codec can't encode character '\\udcff' in "
- b"position 7: surrogates not allowed"), stderr)
+ self.assert_(b"UnicodeEncodeError:" in stderr,
+ "%r not in %s" % (b"UniodeEncodeError:", ascii(stderr)))
def test_sys_flags(self):
self.assertTrue(sys.flags)
More information about the Python-checkins
mailing list