From eca3ab7fe68c5c6d185b97f8763a7f2a7122fc25 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 24 May 2017 00:47:40 +0300 Subject: [PATCH 1/4] Revert "bpo-22257: Fix CLI by using int instead of char (compares to EOF). (#1765)" This reverts commit e0918ecf93a458d4e005650f816d64654e73fc2a. From a81da980e8fe0e8ef427e762833f7dfa7843f2b7 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 24 May 2017 00:47:40 +0300 Subject: [PATCH 2/4] Revert "Update importlib.h (GH-1762)" This reverts commit 84c6607a8188064db010010bcb67f8e54311f1b0. From 6eac9e175c78c116879d98a44516dcbe4f7a5df1 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 24 May 2017 00:47:40 +0300 Subject: [PATCH 3/4] Revert "bpo-29335 - apply suggested test_subprocess simplifications from haypo and Zach: (#1757)" This reverts commit 56bc3b768c3cc3817031b56d5e7a279aa1296bc9. From 695cb3533fbb035e35a993d0a7c3949b2ba1eb60 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 24 May 2017 00:47:40 +0300 Subject: [PATCH 4/4] Revert "Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a rawstring. (#1759)" This reverts commit 5ba185039f1bd465d3f82531324fd3fe1ee42f0c. --- Lib/html/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/html/parser.py b/Lib/html/parser.py index 9597948339a53f..ef869bc72db780 100644 --- a/Lib/html/parser.py +++ b/Lib/html/parser.py @@ -102,7 +102,7 @@ def reset(self): _markupbase.ParserBase.reset(self) def feed(self, data): - """Feed data to the parser. + r"""Feed data to the parser. Call this as often as you want, with as little or as much text as you want (may include '\n').