commit | acb470c05ffc3fd1191f948fd5708fa91e8e2e8b | [log] [tgz] |
---|---|---|
author | Thomas Heller <theller@ctypes.org> | Wed Jul 11 19:34:54 2007 +0000 |
committer | Thomas Heller <theller@ctypes.org> | Wed Jul 11 19:34:54 2007 +0000 |
tree | 9f5c2b0a9c993aba14d121710f0a3dbe12b36192 | |
parent | f5af466d3a3f848b218462e463622ed8333be1f0 [diff] [blame] |
Fix the test; solution found by Christian Heimes. Thanks!
diff --git a/Lib/test/test_pep263.py b/Lib/test/test_pep263.py index ae61af9..dd13558 100644 --- a/Lib/test/test_pep263.py +++ b/Lib/test/test_pep263.py
@@ -9,11 +9,11 @@ def test_pep263(self): self.assertEqual( "ðÉÔÏÎ".encode("utf-8"), - '\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd' + b'\xd0\x9f\xd0\xb8\xd1\x82\xd0\xbe\xd0\xbd' ) self.assertEqual( "\ð".encode("utf-8"), - '\\\xd0\x9f' + b'\\\xd0\x9f' ) def test_main():