summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-05-27 12:56:23 (GMT)
committerYury Selivanov <yury@magic.io>2019-05-27 12:56:23 (GMT)
commitff6b2e66b19a26b4c2ab57e62e1ab9f3d94dd76a (patch)
treee563196c349a6af42abc885045947360a2299fed /Misc/NEWS.d
parent431b540bf79f0982559b1b0e420b1b085f667bb7 (diff)
downloadcpython-ff6b2e66b19a26b4c2ab57e62e1ab9f3d94dd76a.zip
cpython-ff6b2e66b19a26b4c2ab57e62e1ab9f3d94dd76a.tar.gz
cpython-ff6b2e66b19a26b4c2ab57e62e1ab9f3d94dd76a.tar.bz2
bpo-37047: Refactor AsyncMock setup logic for autospeccing (GH-13574)
Handle late binding and attribute access in unittest.mock.AsyncMock setup for autospeccing.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2019-05-26-01-20-06.bpo-37047.K9epi8.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-05-26-01-20-06.bpo-37047.K9epi8.rst b/Misc/NEWS.d/next/Library/2019-05-26-01-20-06.bpo-37047.K9epi8.rst
new file mode 100644
index 0000000..ace5a3a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-05-26-01-20-06.bpo-37047.K9epi8.rst
@@ -0,0 +1,3 @@
+Handle late binding and attribute access in :class:`unittest.mock.AsyncMock`
+setup for autospeccing. Document newly implemented async methods in
+:class:`unittest.mock.MagicMock`.