]> granicus.if.org Git - python/commitdiff
Fix accidental non-breakable spaces (U+00A0).
authorSerhiy Storchaka <storchaka@gmail.com>
Fri, 8 Feb 2013 09:22:05 +0000 (11:22 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Fri, 8 Feb 2013 09:22:05 +0000 (11:22 +0200)
Lib/test/test_pyexpat.py
Misc/NEWS

index 7f93bfb842eb1282617affa9ff11962f5cb77548..8ef391791f717255d8876aaccecfb2846d86380c 100644 (file)
@@ -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:
index 0f5c5ebb092c861b2f3816e0509b7df62a40f5e2..1d5320ef86325a393fdcad5d053efb36c68d6414 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -217,7 +217,7 @@ Library
 
 - Issue #17073: Fix some integer overflows in sqlite3 module.
 
-- Issue #17114: IDLE now uses non-strict config parser.
+- Issue #17114: IDLE now uses non-strict config parser.
 
 - Issue #16723: httplib.HTTPResponse no longer marked closed when the connection
   is automatically closed.