From 7ed44e52aa8a238bfbcb39d89df477e9bafc1837 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 23 Aug 2005 04:06:46 +0000 Subject: [PATCH] add note about "markupbase" not being intended for direct use (closes SF bug #736659, patch #901369) --- Lib/markupbase.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Lib/markupbase.py b/Lib/markupbase.py index b8d8d5d27ed..3d00a74a92e 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