[Python-checkins] CVS: python/dist/src/Lib/xml/dom minidom.py,1.31,1.32

Fred L. Drake fdrake@users.sourceforge.net
Thu, 05 Apr 2001 07:41:33 -0700


Update of /cvsroot/python/python/dist/src/Lib/xml/dom
In directory usw-pr-cvs1:/tmp/cvs-serv9741

Modified Files:
	minidom.py 
Log Message:

Corrected default value of the DocumentType.internalSubset attribute based
on a clarification sent to the www-dom list.


Index: minidom.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/dom/minidom.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -r1.31 -r1.32
*** minidom.py	2001/04/04 15:15:18	1.31
--- minidom.py	2001/04/05 14:41:30	1.32
***************
*** 728,732 ****
      publicId = None
      systemId = None
!     internalSubset = ""
      entities = None
      notations = None
--- 728,732 ----
      publicId = None
      systemId = None
!     internalSubset = None
      entities = None
      notations = None