From 1273dfc39cb8e186030874455e1354d439b38472 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Fri, 8 Feb 2013 11:22:05 +0200 Subject: [PATCH] Fix accidental non-breakable spaces (U+00A0). --- Lib/test/test_pyexpat.py | 2 +- Misc/NEWS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_pyexpat.py b/Lib/test/test_pyexpat.py index 7f93bfb842e..8ef391791f7 100644 --- a/Lib/test/test_pyexpat.py +++ b/Lib/test/test_pyexpat.py @@ -600,7 +600,7 @@ def test1(self): 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"\r\n" parser = expat.ParserCreate() try: diff --git a/Misc/NEWS b/Misc/NEWS index 0f5c5ebb092..1d5320ef863 100644 --- 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.