summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-01-06 18:15:51 +0100
committerVictor Stinner <victor.stinner@gmail.com>2017-01-06 18:15:51 +0100
commit4b5a4553c7513a3de9891cf3634fcc1dcd8f1175 (patch)
tree08d7c7234a189f461962226cabe322bc6d33b458 /Misc
parent3a2730f9bd5713020e5e3b1d60a71b048728af0a (diff)
downloadcpython-4b5a4553c7513a3de9891cf3634fcc1dcd8f1175.tar.gz
Fix unittest.mock._Call: don't ignore name
Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter anymore. Patch written by Jiajun Huang.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 113ca8abbe..456f876052 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,6 +42,9 @@ Core and Builtins
Library
-------
+- Issue #28961: Fix unittest.mock._Call helper: don't ignore the name parameter
+ anymore. Patch written by Jiajun Huang.
+
- Issue #15812: inspect.getframeinfo() now correctly shows the first line of
a context. Patch by Sam Breese.