]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#6098: Refrain from claiming DOM level 3 conformance in minidom.
authorGeorg Brandl <georg@python.org>
Fri, 15 Oct 2010 18:00:35 +0000 (18:00 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 15 Oct 2010 18:00:35 +0000 (18:00 +0000)
Lib/xml/dom/minidom.py
Misc/NEWS

index 81a1330c603d05855214dc0696f230acb1781215..e51eef625c75ddf32689e10d818ef84fb522e82d 100644 (file)
@@ -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),
index 4bb89da9a6af16d8ec1f2ef7bb5b23865677b7a0..0e247379fbc82f4f77b2d16e4746243334957325 100644 (file)
--- 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.