]> granicus.if.org Git - python/commitdiff
Fixed a typo in the HTMLParser.feed docstrings. The docstring started with an 'r...
authorJani Šumak <dasdachs@users.noreply.github.com>
Tue, 23 May 2017 13:40:54 +0000 (15:40 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Tue, 23 May 2017 13:40:54 +0000 (16:40 +0300)
Lib/html/parser.py

index ef869bc72db780056ada375a5316aec83b1c6ad8..9597948339a53f30692e0d63e879a58d734e954c 100644 (file)
@@ -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').