]> granicus.if.org Git - python/commitdiff
Merge my changes to the offending comment with Guido's changes.
authorFred Drake <fdrake@acm.org>
Wed, 23 May 2001 04:53:44 +0000 (04:53 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 23 May 2001 04:53:44 +0000 (04:53 +0000)
Lib/HTMLParser.py

index 7c046706bc51b82d2521e9820214c5eb750421c2..339c132207afd23e9bbc3f95d8cbfa9cbd1a5450 100644 (file)
@@ -74,15 +74,19 @@ class HTMLParseError(Exception):
 
 
 # HTML parser class -- find tags and call handler functions.
-# Usage: p = HTMLParser(); p.feed(data); ...; p.close().
+# Usage:
+#
+#     p = HTMLParser(); p.feed(data); ...; p.close()
 
 # Start tags are handled by calling self.handle_starttag() or
 # self.handle_startendtag(); end tags by self.handle_endtag().  The
-# data between tags is passed to the parser by calling
-# self.handle_data() with some data as argument (the data may be split
-# up in arbitrary chunks).  Entity references are passed by calling
-# self.handle_entityref() with the entity reference as argument.
-# Etc.
+# data between tags is passed from the parser to the derived class by
+# calling self.handle_data() with the data as argument (the data may
+# be split up in arbitrary chunks).  Entity references are passed by
+# calling self.handle_entityref() with the entity reference as the
+# argument.  Numeric character references are passed to
+# self.handle_charref() with the string containing the reference as
+# the argument.
 
 class HTMLParser: