From dc806704b5093061ac60299493bef9e0798dee9a Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 5 Apr 2001 14:41:30 +0000 Subject: Corrected default value of the DocumentType.internalSubset attribute based on a clarification sent to the www-dom list. --- Lib/xml/dom/minidom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py index 628a375..97d622f 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 -- cgit v0.12