summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-05-25 18:11:43 +0200
committerÉric Araujo <merwok@netwok.org>2011-05-25 18:11:43 +0200
commit20d4574b0deea32712a217ca13b91142fbded4c4 (patch)
tree01a23335fa246afd293216814cb0cc18fa5d73ae
parent03c662ba06d3de56cb6ce18bff3d4b4da6fc3c0d (diff)
downloadcpython-20d4574b0deea32712a217ca13b91142fbded4c4.tar.gz
Fix display of html.parser.HTMLParser.feed docstrin
-rw-r--r--Lib/HTMLParser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/HTMLParser.py b/Lib/HTMLParser.py
index e0189011d1..884d2a53c5 100644
--- a/Lib/HTMLParser.py
+++ b/Lib/HTMLParser.py
@@ -99,7 +99,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').