summaryrefslogtreecommitdiff
path: root/Lib/markupbase.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2005-08-23 04:06:46 +0000
committerFred Drake <fdrake@acm.org>2005-08-23 04:06:46 +0000
commit61f11cd22631f7ebc42a72d51889894617f94b4d (patch)
treea715cea5c04a0228b35bf0fc6a12098def393f66 /Lib/markupbase.py
parentbc0a586024934f5f72c71b7f2de81b9c2548a698 (diff)
downloadcpython-61f11cd22631f7ebc42a72d51889894617f94b4d.tar.gz
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 b8d8d5d27e..3d00a74a92 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