diff options
| author | Benjamin Peterson <benjamin@python.org> | 2009-11-13 00:17:59 +0000 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2009-11-13 00:17:59 +0000 |
| commit | aeaa592516c8ea8a0a6318f69635baa817ced82f (patch) | |
| tree | 7b082d501188cc6acc44469e7f33a766c51d9d55 /Lib/test/test_pep263.py | |
| parent | a1d23326b19a0182ef74aae32386c5119b1a6e39 (diff) | |
| download | cpython-git-aeaa592516c8ea8a0a6318f69635baa817ced82f.tar.gz | |
Merged revisions 76230 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76230 | benjamin.peterson | 2009-11-12 17:39:44 -0600 (Thu, 12 Nov 2009) | 2 lines
fix several compile() issues by translating newlines in the tokenizer
........
Diffstat (limited to 'Lib/test/test_pep263.py')
| -rw-r--r-- | Lib/test/test_pep263.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pep263.py b/Lib/test/test_pep263.py index 587b2fcc11..8c1fbe770a 100644 --- a/Lib/test/test_pep263.py +++ b/Lib/test/test_pep263.py @@ -26,7 +26,7 @@ class PEP263Test(unittest.TestCase): try: compile(b"# coding: cp932\nprint '\x94\x4e'", "dummy", "exec") except SyntaxError as v: - self.assertEquals(v.text, "print '\u5e74'") + self.assertEquals(v.text, "print '\u5e74'\n") else: self.fail() |
