Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1273dfc

Browse files
Fix accidental non-breakable spaces (U+00A0).
1 parent f1319d8 commit 1273dfc

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_pyexpat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ def test1(self):
600600
self.assertEqual(str(e), 'unclosed token: line 2, column 0')
601601

602602
def test2(self):
603-
# \xc2\x85 is UTF-8 encoded U+0085 (NEXT LINE)
603+
# \xc2\x85 is UTF-8 encoded U+0085 (NEXT LINE)
604604
xml = b"<?xml version\xc2\x85='1.0'?>\r\n"
605605
parser = expat.ParserCreate()
606606
try:

Misc/NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ Library
217217

218218
- Issue #17073: Fix some integer overflows in sqlite3 module.
219219

220-
- Issue #17114: IDLE now uses non-strict config parser.
220+
- Issue #17114: IDLE now uses non-strict config parser.
221221

222222
- Issue #16723: httplib.HTTPResponse no longer marked closed when the connection
223223
is automatically closed.

0 commit comments

Comments
 (0)