diff options
author | Jani Ĺ umak <dasdachs@users.noreply.github.com> | 2017-05-23 13:40:54 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-05-23 13:40:54 (GMT) |
commit | 5ba185039f1bd465d3f82531324fd3fe1ee42f0c (patch) | |
tree | 9ea8a37c502291e80c398f7f80d6f7a823767e10 /Lib/html | |
parent | 21b3e04c13212b29e8c35ffc36eed8603fde08f4 (diff) | |
download | cpython-5ba185039f1bd465d3f82531324fd3fe1ee42f0c.zip cpython-5ba185039f1bd465d3f82531324fd3fe1ee42f0c.tar.gz cpython-5ba185039f1bd465d3f82531324fd3fe1ee42f0c.tar.bz2 |
Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r', like a rawstring. (#1759)
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 ef869bc..9597948 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): - 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'). |