summaryrefslogtreecommitdiffstats
path: root/Lib/markupbase.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2005-08-23 04:06:46 (GMT)
committerFred Drake <fdrake@acm.org>2005-08-23 04:06:46 (GMT)
commit7ed44e52aa8a238bfbcb39d89df477e9bafc1837 (patch)
tree79803fe46a8020dbe05eb8cd7c01179659a3af90 /Lib/markupbase.py
parent0cd233f4875d042ce74b41e368e6dacbbb47ff45 (diff)
downloadcpython-7ed44e52aa8a238bfbcb39d89df477e9bafc1837.zip
cpython-7ed44e52aa8a238bfbcb39d89df477e9bafc1837.tar.gz
cpython-7ed44e52aa8a238bfbcb39d89df477e9bafc1837.tar.bz2
add note about "markupbase" not being intended for direct use
(closes SF bug #736659, patch #901369)
Diffstat (limited to 'Lib/markupbase.py')
-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