diff options
author | Fred Drake <fdrake@acm.org> | 2001-04-05 14:41:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-04-05 14:41:30 (GMT) |
commit | dc806704b5093061ac60299493bef9e0798dee9a (patch) | |
tree | 7c737b1f811ae1a069550f723a7b0a28cf41b37f /Lib/xml/dom | |
parent | 9b3bc49575fecd30e3f862e8864625f9c8c7a4c2 (diff) | |
download | cpython-dc806704b5093061ac60299493bef9e0798dee9a.zip cpython-dc806704b5093061ac60299493bef9e0798dee9a.tar.gz cpython-dc806704b5093061ac60299493bef9e0798dee9a.tar.bz2 |
Corrected default value of the DocumentType.internalSubset attribute based
on a clarification sent to the www-dom list.
Diffstat (limited to 'Lib/xml/dom')
-rw-r--r-- | Lib/xml/dom/minidom.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |