summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-02-08 09:22:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-02-08 09:22:05 (GMT)
commit1273dfc39cb8e186030874455e1354d439b38472 (patch)
tree30cd5eb1d3349e15fb9a6ba9f1b866a5c9875651 /Lib
parentf1319d81f71512b464336c778089a5fe168fef93 (diff)
downloadcpython-1273dfc39cb8e186030874455e1354d439b38472.zip
cpython-1273dfc39cb8e186030874455e1354d439b38472.tar.gz
cpython-1273dfc39cb8e186030874455e1354d439b38472.tar.bz2
Fix accidental non-breakable spaces (U+00A0).
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_pyexpat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pyexpat.py b/Lib/test/test_pyexpat.py
index 7f93bfb..8ef3917 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: