summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRobert Collins <rbtcollins@hp.com>2015-07-14 01:51:40 (GMT)
committerRobert Collins <rbtcollins@hp.com>2015-07-14 01:51:40 (GMT)
commitf58f88c4c7df1827a31457da8dbcacd127613ade (patch)
tree20558bf0614bd80cb714b3007654ba6832e1257b /Misc
parent47066ee3db59e39d3567abf918d1fa621f9bca99 (diff)
downloadcpython-f58f88c4c7df1827a31457da8dbcacd127613ade.zip
cpython-f58f88c4c7df1827a31457da8dbcacd127613ade.tar.gz
cpython-f58f88c4c7df1827a31457da8dbcacd127613ade.tar.bz2
Issue #23661: unittest.mock side_effects can now be exceptions again.
This was a regression vs Python 3.4. Patch from Ignacio Rossi
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 8a007ea..9841059 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1581,3 +1581,4 @@ Tarek Ziadé
Gennadiy Zlobin
Doug Zongker
Peter Ã…strand
+Ignacio Rossi
diff --git a/Misc/NEWS b/Misc/NEWS
index aaa7f91..2a5b447 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -17,6 +17,9 @@ Core and Builtins
Library
-------
+- Issue #23661: unittest.mock side_effects can now be exceptions again. This
+ was a regression vs Python 3.4. Patch from Ignacio Rossi
+
- Issue #24608: chunk.Chunk.read() now always returns bytes, not str.
- Issue #18684: Fixed reading out of the buffer in the re module.