[Python-checkins] python/dist/src/Lib markupbase.py,1.10,1.11

fdrake@users.sourceforge.net fdrake at users.sourceforge.net
Tue Aug 23 06:06:58 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17382/Lib

Modified Files:
	markupbase.py 
Log Message:
add note about "markupbase" not being intended for direct use
(closes SF bug #736659, patch #901369)


Index: markupbase.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/markupbase.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- markupbase.py	10 Jul 2004 21:49:45 -0000	1.10
+++ markupbase.py	23 Aug 2005 04:06:46 -0000	1.11
@@ -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
 



More information about the Python-checkins mailing list