summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2015-04-14 07:12:57 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2015-04-14 07:12:57 (GMT)
commit5f6684efe0690c1272b206764301e751e37d9bcf (patch)
treeba6a1f57f1603b2f3af243de631c0abbd0de6a95 /Misc
parent4882cacab6bcaf90ac496fc8878987598e7665c1 (diff)
downloadcpython-5f6684efe0690c1272b206764301e751e37d9bcf.zip
cpython-5f6684efe0690c1272b206764301e751e37d9bcf.tar.gz
cpython-5f6684efe0690c1272b206764301e751e37d9bcf.tar.bz2
Issue #23310: Fix MagicMock's initializer to work with __methods__.
Behavior equivalent to m.configure_mock(). Patch by Kasia Jachim.
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 e0ade24..7de6de6 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -632,6 +632,7 @@ John Interrante
Bob Ippolito
Roger Irwin
Atsuo Ishimoto
+Kasia Jachim
Adam Jackson
Ben Jackson
Paul Jackson
diff --git a/Misc/NEWS b/Misc/NEWS
index a38f395..54f6330 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -173,6 +173,9 @@ Library
- Issue #23801: Fix issue where cgi.FieldStorage did not always ignore the
entire preamble to a multipart body.
+- Issue #23310: Fix MagicMock's initializer to work with __methods__, just
+ like configure_mock(). Patch by Kasia Jachim.
+
Tests
-----