summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-15 17:58:45 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-15 17:58:45 (GMT)
commitb9cd72a9f776bc2b517e22af444dc14268f50b41 (patch)
tree7792769589a501efcdedce5cd4356c5bcffa06aa /Misc/NEWS
parentd4460aaacdae40505a4645a73c021bfc810c9cb3 (diff)
downloadcpython-b9cd72a9f776bc2b517e22af444dc14268f50b41.zip
cpython-b9cd72a9f776bc2b517e22af444dc14268f50b41.tar.gz
cpython-b9cd72a9f776bc2b517e22af444dc14268f50b41.tar.bz2
#5762: fix handling of empty namespace in minidom, which would result in AttributeError on toxml().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 097edd2..4bb89da 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Library
-------
+- Issue #5762: Fix AttributeError raised by ``xml.dom.minidom`` when an empty
+ XML namespace attribute is encountered.
+
- Issue #2830: Add the ``html.escape()`` function, which quotes all problematic
characters by default. Deprecate ``cgi.escape()``.