Commit 3844f0d7 authored by Georg Brandl's avatar Georg Brandl

#6098: Refrain from claiming DOM level 3 conformance in minidom.

parent b9cd72a9
...@@ -1371,11 +1371,9 @@ class Notation(Identified, Childless, Node): ...@@ -1371,11 +1371,9 @@ class Notation(Identified, Childless, Node):
class DOMImplementation(DOMImplementationLS): class DOMImplementation(DOMImplementationLS):
_features = [("core", "1.0"), _features = [("core", "1.0"),
("core", "2.0"), ("core", "2.0"),
("core", "3.0"),
("core", None), ("core", None),
("xml", "1.0"), ("xml", "1.0"),
("xml", "2.0"), ("xml", "2.0"),
("xml", "3.0"),
("xml", None), ("xml", None),
("ls-load", "3.0"), ("ls-load", "3.0"),
("ls-load", None), ("ls-load", None),
......
...@@ -24,6 +24,8 @@ Core and Builtins ...@@ -24,6 +24,8 @@ Core and Builtins
Library Library
------- -------
- Issue #6098: Don't claim DOM level 3 conformance in minidom.
- Issue #5762: Fix AttributeError raised by ``xml.dom.minidom`` when an empty - Issue #5762: Fix AttributeError raised by ``xml.dom.minidom`` when an empty
XML namespace attribute is encountered. XML namespace attribute is encountered.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment