summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2005-08-23 04:08:12 (GMT)
committerFred Drake <fdrake@acm.org>2005-08-23 04:08:12 (GMT)
commitd6f14ed1cb89fd7112c54f236dad788005794240 (patch)
tree6440045ae475c3451b4c3d04beca8153329ef5ef
parent3d41e9aac7cf4f395a13f65f70f9a407dd180e6f (diff)
downloadcpython-d6f14ed1cb89fd7112c54f236dad788005794240.zip
cpython-d6f14ed1cb89fd7112c54f236dad788005794240.tar.gz
cpython-d6f14ed1cb89fd7112c54f236dad788005794240.tar.bz2
add note about "markupbase" not being intended for direct use
(closes SF bug #736659, patch #901369; backport of Lib/markupbase.py 1.11)
-rw-r--r--Lib/markupbase.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/markupbase.py b/Lib/markupbase.py
index b8d8d5d..3d00a74 100644
--- a/Lib/markupbase.py
+++ b/Lib/markupbase.py
@@ -1,4 +1,10 @@
-"""Shared support for scanning document type declarations in HTML and XHTML."""
+"""Shared support for scanning document type declarations in HTML and XHTML.
+
+This module is used as a foundation for the HTMLParser and sgmllib
+modules (indirectly, for htmllib as well). It has no documented
+public API and should not be used directly.
+
+"""
import re