From: R David Murray Date: Sun, 20 Apr 2014 04:48:25 +0000 (-0400) Subject: Merge: #12220: improve minidom error when URI contains spaces. X-Git-Tag: v3.5.0a1~1813 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4eef074e4cb8f3c10000fa2187c7a718a1d76d40;p=thirdparty%2FPython%2Fcpython.git Merge: #12220: improve minidom error when URI contains spaces. --- 4eef074e4cb8f3c10000fa2187c7a718a1d76d40 diff --cc Misc/NEWS index 55a146ad83c4,804f1ae41ebc..e59ba478dbfd --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -54,17 -39,9 +54,20 @@@ Core and Builtin 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 #21068: The ssl.PROTOCOL* constants are now enum members. + +- Issue #21262: New method assert_not_called for Mock. + It raises AssertionError if the mock has been called. + +- Issue #21238: New keyword argument `unsafe` to Mock. It raises + `AttributeError` incase of an attribute startswith assert or assret. + +- Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not + PROTOCOL_SSLv3, for maximum compatibility. + - Issue #21239: patch.stopall() didn't work deterministically when the same name was patched more than once.