summaryrefslogtreecommitdiffstats
path: root/Lib/xml/dom
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-04-05 14:41:30 (GMT)
committerFred Drake <fdrake@acm.org>2001-04-05 14:41:30 (GMT)
commitdc806704b5093061ac60299493bef9e0798dee9a (patch)
tree7c737b1f811ae1a069550f723a7b0a28cf41b37f /Lib/xml/dom
parent9b3bc49575fecd30e3f862e8864625f9c8c7a4c2 (diff)
downloadcpython-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.py2
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