summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorPetr Motejlek <petr@motejlek.net>2017-03-05 16:14:26 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-03-05 16:14:26 (GMT)
commitc6e199f2e9a2514c3fd220aaa4bd23fa1d6da8c9 (patch)
tree4958848307228e48b39e29a2ca2681f48cac53c7 /Misc/NEWS
parent171b674c8bf63153482e7e23e97c57c8b9182466 (diff)
downloadcpython-c6e199f2e9a2514c3fd220aaa4bd23fa1d6da8c9.zip
cpython-c6e199f2e9a2514c3fd220aaa4bd23fa1d6da8c9.tar.gz
cpython-c6e199f2e9a2514c3fd220aaa4bd23fa1d6da8c9.tar.bz2
bpo-29615: backport to 3.5 (#479)
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 b17ad90..03f8286 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -35,6 +35,10 @@ Extension Modules
Library
-------
+- bpo-29615: SimpleXMLRPCDispatcher no longer chains KeyError (or any other
+ exception) to exception(s) raised in the dispatched methods.
+ Patch by Petr Motejlek.
+
- bpo-29704: asyncio.subprocess.SubprocessStreamProtocol no longer closes before
all pipes are closed.