summaryrefslogtreecommitdiffstats
path: root/Lib/htmllib.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-10-27 15:47:48 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2003-10-27 15:47:48 (GMT)
commit0f10343410a300a84c93dce9280de8c8d8380481 (patch)
treeb20b741d2c18dc13dfc6008c412d2ba0b24808db /Lib/htmllib.py
parentb546be24488b613c74b4bcc307e02c78c362a067 (diff)
downloadcpython-0f10343410a300a84c93dce9280de8c8d8380481.zip
cpython-0f10343410a300a84c93dce9280de8c8d8380481.tar.gz
cpython-0f10343410a300a84c93dce9280de8c8d8380481.tar.bz2
Docstring fix: XHTML 1.0 entities are supported
Diffstat (limited to 'Lib/htmllib.py')
-rw-r--r--Lib/htmllib.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/htmllib.py b/Lib/htmllib.py
index 40f6a86..94492a6 100644
--- a/Lib/htmllib.py
+++ b/Lib/htmllib.py
@@ -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.
"""