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

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


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

Modified Files:
      Tag: release24-maint
	markupbase.py 
Log Message:
add note about "markupbase" not being intended for direct use
(closes SF bug #736659, patch #901369; backport of Lib/markupbase.py 1.11)


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