summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-04-20 04:46:05 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-04-20 04:46:05 (GMT)
commit9077d24d7f85e09e53def11b2beeaf40749e2464 (patch)
treee9ecb49bfa01f919f9e1f7d0d2a517aba4bed6c4 /Misc/NEWS
parent09ae544ea3a6e33418ec8ab0100fc8288eef6d13 (diff)
downloadcpython-9077d24d7f85e09e53def11b2beeaf40749e2464.zip
cpython-9077d24d7f85e09e53def11b2beeaf40749e2464.tar.gz
cpython-9077d24d7f85e09e53def11b2beeaf40749e2464.tar.bz2
#12220: improve minidom error when URI contains spaces.
Fix by 'amathew', test by Marek Stepniowski.
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 5edfb04..804f1ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,9 @@ Core and Builtins
Library
-------
+- Issue #12220: mindom now raises a custom ValueError indicating it doesn't
+ support spaces in URIs instead of letting a 'split' ValueError bubble up.
+
- Issue #21239: patch.stopall() didn't work deterministically when the same
name was patched more than once.