]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Corrected default value of the DocumentType.internalSubset attribute based
authorFred Drake <fdrake@acm.org>
Thu, 5 Apr 2001 14:41:30 +0000 (14:41 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 5 Apr 2001 14:41:30 +0000 (14:41 +0000)
on a clarification sent to the www-dom list.

Lib/xml/dom/minidom.py

index 628a375ad9cecdc9c641338e8bb77c6939a9ba42..97d622f36f45053459c8ecb651b539868bc432cc 100644 (file)
@@ -727,7 +727,7 @@ class DocumentType(Node):
     name = None
     publicId = None
     systemId = None
-    internalSubset = ""
+    internalSubset = None
     entities = None
     notations = None