summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-15 18:00:35 +0000
committerGeorg Brandl <georg@python.org>2010-10-15 18:00:35 +0000
commit7ba662f41ddcbb0f591bcd77d55de8f2e15590ff (patch)
treecf265d5a9def45c494adfd298230faee427f5559
parent1ea2e09968e1ff91de9faabb13a348109d6b365e (diff)
downloadcpython-7ba662f41ddcbb0f591bcd77d55de8f2e15590ff.tar.gz
#6098: Refrain from claiming DOM level 3 conformance in minidom.
-rw-r--r--Lib/xml/dom/minidom.py2
-rw-r--r--Misc/NEWS2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/xml/dom/minidom.py b/Lib/xml/dom/minidom.py
index 81a1330c60..e51eef625c 100644
--- a/Lib/xml/dom/minidom.py
+++ b/Lib/xml/dom/minidom.py
@@ -1371,11 +1371,9 @@ class Notation(Identified, Childless, Node):
class DOMImplementation(DOMImplementationLS):
_features = [("core", "1.0"),
("core", "2.0"),
- ("core", "3.0"),
("core", None),
("xml", "1.0"),
("xml", "2.0"),
- ("xml", "3.0"),
("xml", None),
("ls-load", "3.0"),
("ls-load", None),
diff --git a/Misc/NEWS b/Misc/NEWS
index 4bb89da9a6..0e247379fb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and Builtins
Library
-------
+- Issue #6098: Don't claim DOM level 3 conformance in minidom.
+
- Issue #5762: Fix AttributeError raised by ``xml.dom.minidom`` when an empty
XML namespace attribute is encountered.