From: Fred Drake Date: Thu, 5 Apr 2001 14:41:30 +0000 (+0000) Subject: Corrected default value of the DocumentType.internalSubset attribute based X-Git-Tag: v2.1c1~189 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc806704b5093061ac60299493bef9e0798dee9a;p=thirdparty%2FPython%2Fcpython.git Corrected default value of the DocumentType.internalSubset attribute based on a clarification sent to the www-dom list. --- diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 628a375ad9ce..97d622f36f45 100644 --- a/Lib/xml/dom/minidom.py +++ b/Lib/xml/dom/minidom.py @@ -727,7 +727,7 @@ class DocumentType(Node): name = None publicId = None systemId = None - internalSubset = "" + internalSubset = None entities = None notations = None