]> granicus.if.org Git - python/commitdiff
Docstring fix: XHTML 1.0 entities are supported
authorAndrew M. Kuchling <amk@amk.ca>
Mon, 27 Oct 2003 15:47:48 +0000 (15:47 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Mon, 27 Oct 2003 15:47:48 +0000 (15:47 +0000)
Lib/htmllib.py

index 40f6a86469ac6f4ec14b972e10318c3fdac26072..94492a6da2417be91b79a8d04f6d73f6b567c29f 100644 (file)
@@ -13,9 +13,9 @@ __all__ = ["HTMLParser"]
 class HTMLParser(SGMLParser):
     """This is the basic HTML parser class.
 
-    It supports all entity names required by the HTML 2.0 specification
-    RFC 1866.  It also defines handlers for all HTML 2.0 and many HTML 3.0
-    and 3.2 elements.
+    It supports all entity names required by the XHTML 1.0 Recommendation.
+    It also defines handlers for all HTML 2.0 and many HTML 3.0 and 3.2
+    elements.
 
     """