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

Skip to content

Commit 70ea7fa

Browse files
Fix accidental non-breakable spaces (U+00A0).
2 parents 5546b00 + 1273dfc commit 70ea7fa

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/test/test_lzma.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ def test_read_incomplete(self):
671671

672672
def test_read_truncated(self):
673673
# Drop stream footer: CRC (4 bytes), index size (4 bytes),
674-
# flags (2 bytes) and magic number (2 bytes).
674+
# flags (2 bytes) and magic number (2 bytes).
675675
truncated = COMPRESSED_XZ[:-12]
676676
with LZMAFile(BytesIO(truncated)) as f:
677677
self.assertRaises(EOFError, f.read)

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
@@ -171,7 +171,7 @@ Library
171171

172172
- Issue #17073: Fix some integer overflows in sqlite3 module.
173173

174-
- Issue #17114: IDLE now uses non-strict config parser.
174+
- Issue #17114: IDLE now uses non-strict config parser.
175175

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

0 commit comments

Comments
 (0)