commit | 5ba185039f1bd465d3f82531324fd3fe1ee42f0c | [log] [tgz] |
---|---|---|
author | Jani Ĺ umak <dasdachs@users.noreply.github.com> | Tue May 23 15:40:54 2017 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Tue May 23 16:40:54 2017 +0300 |
tree | 9ea8a37c502291e80c398f7f80d6f7a823767e10 | |
parent | 21b3e04c13212b29e8c35ffc36eed8603fde08f4 [diff] [blame] |
Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a rawstring. (#1759)
diff --git a/Lib/html/parser.py b/Lib/html/parser.py index ef869bc..9597948 100644 --- a/Lib/html/parser.py +++ b/Lib/html/parser.py
@@ -102,7 +102,7 @@ _markupbase.ParserBase.reset(self) def feed(self, data): - r"""Feed data to the parser. + """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').