summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-02-25 11:53:40 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-02-25 11:53:40 (GMT)
commiteae3336e425a718d6c17ee1247236a62080bac7f (patch)
tree144b7ec9f5b2a289b23a5f5c175e13947182a772 /Misc/NEWS
parentf828218d652fe8120d88cfefa52df5c2039cdf92 (diff)
downloadcpython-eae3336e425a718d6c17ee1247236a62080bac7f.zip
cpython-eae3336e425a718d6c17ee1247236a62080bac7f.tar.gz
cpython-eae3336e425a718d6c17ee1247236a62080bac7f.tar.bz2
Issue #26402: Fix XML-RPC client retrying after server disconnection
This is a regression introduced in 3.5 by revision eba80326ba53. Fix by Jelte Fennema, test case by me.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 56f771f..029b334 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -79,6 +79,10 @@ Core and Builtins
Library
-------
+- Issue #26402: Fix XML-RPC client to retry when the server shuts down a
+ persistent connection. This was a regression related to the new
+ http.client.RemoteDisconnected exception in 3.5.0a4.
+
- Issue #25913: Leading ``<~`` is optional now in base64.a85decode() with
adobe=True. Patch by Swati Jaiswal.