diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-24 04:20:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-24 04:20:45 (GMT) |
commit | c842efc6aedf979b827a9473192f46cec53d58db (patch) | |
tree | 11a8a1761e18b7d86a16d9189c5b9e9a49963a45 /Lib/html | |
parent | bb1c0346b93c7f83c893dc43fe7bb286d94297b8 (diff) | |
download | cpython-c842efc6aedf979b827a9473192f46cec53d58db.zip cpython-c842efc6aedf979b827a9473192f46cec53d58db.tar.gz cpython-c842efc6aedf979b827a9473192f46cec53d58db.tar.bz2 |
Revert "Fixed a typo in the HTMLParser.feed docstrings" (#1771)
* Revert "Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a The docstring was correct. I read the patch in opposite direction, as *adding* the "r" prefix.
This reverts commit 5ba185039f1bd465d3f82531324fd3fe1ee42f0c.
Diffstat (limited to 'Lib/html')
-rw-r--r-- | Lib/html/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/html/parser.py b/Lib/html/parser.py index 9597948..ef869bc 100644 --- a/Lib/html/parser.py +++ b/Lib/html/parser.py @@ -102,7 +102,7 @@ class HTMLParser(_markupbase.ParserBase): _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'). |