diff options
author | Georg Brandl <georg@python.org> | 2010-10-15 18:00:35 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-15 18:00:35 +0000 |
commit | 7ba662f41ddcbb0f591bcd77d55de8f2e15590ff (patch) | |
tree | cf265d5a9def45c494adfd298230faee427f5559 | |
parent | 1ea2e09968e1ff91de9faabb13a348109d6b365e (diff) | |
download | cpython-7ba662f41ddcbb0f591bcd77d55de8f2e15590ff.tar.gz |
#6098: Refrain from claiming DOM level 3 conformance in minidom.
-rw-r--r-- | Lib/xml/dom/minidom.py | 2 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
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), @@ -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. |