diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-08 11:24:55 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-08 11:24:55 +0200 |
commit | 58d78ebdec3944876b51a9624a9398e62acc4ab6 (patch) | |
tree | 52c6ab7c296da27192963ea971a74a6da47accc0 /Lib/test/test_pyexpat.py | |
parent | a04a163fa38b423baf9680a3680b802ab1beb495 (diff) | |
parent | ff5bc6cd351ab40e1027702bc147902e948bc9f7 (diff) | |
download | cpython-58d78ebdec3944876b51a9624a9398e62acc4ab6.tar.gz |
Fix accidental non-breakable spaces (U+00A0).
Diffstat (limited to 'Lib/test/test_pyexpat.py')
-rw-r--r-- | Lib/test/test_pyexpat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyexpat.py b/Lib/test/test_pyexpat.py index 7f93bfb842..8ef391791f 100644 --- a/Lib/test/test_pyexpat.py +++ b/Lib/test/test_pyexpat.py @@ -600,7 +600,7 @@ class MalformedInputTest(unittest.TestCase): self.assertEqual(str(e), 'unclosed token: line 2, column 0') def test2(self): - # \xc2\x85 is UTF-8 encoded U+0085 (NEXT LINE) + # \xc2\x85 is UTF-8 encoded U+0085 (NEXT LINE) xml = b"<?xml version\xc2\x85='1.0'?>\r\n" parser = expat.ParserCreate() try: |