summaryrefslogtreecommitdiff
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorLisa Roach <lisaroach14@gmail.com>2019-09-28 18:42:44 -0700
committerGitHub <noreply@github.com>2019-09-28 18:42:44 -0700
commit9a7d9519506ae807ca48ff02e2ea117ebac3450e (patch)
treeee6ec4e54e88f5bd4038a368084b4ba5524facc0 /Misc/NEWS.d
parentf185a73249189bc3b75b4dc26e9ec2990a587b17 (diff)
downloadcpython-git-9a7d9519506ae807ca48ff02e2ea117ebac3450e.tar.gz
bpo-38108: Makes mock objects inherit from Base (GH-16060)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2019-09-25-21-37-02.bpo-38108.Jr9HU6.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-25-21-37-02.bpo-38108.Jr9HU6.rst b/Misc/NEWS.d/next/Library/2019-09-25-21-37-02.bpo-38108.Jr9HU6.rst
new file mode 100644
index 0000000000..d7eea367e4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-09-25-21-37-02.bpo-38108.Jr9HU6.rst
@@ -0,0 +1,2 @@
+Any synchronous magic methods on an AsyncMock now return a MagicMock. Any
+asynchronous magic methods on a MagicMock now return an AsyncMock.