summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorLisa Roach <lisaroach14@gmail.com>2019-05-20 16:19:53 (GMT)
committerGitHub <noreply@github.com>2019-05-20 16:19:53 (GMT)
commit77b3b7701a34ecf6316469e05b79bb91de2addfa (patch)
tree305506415c811e5a01e4ee783f3346f0359b17a2 /Misc
parent0f72147ce2b3d65235b41eddc6a57be40237b5c7 (diff)
downloadcpython-77b3b7701a34ecf6316469e05b79bb91de2addfa.zip
cpython-77b3b7701a34ecf6316469e05b79bb91de2addfa.tar.gz
cpython-77b3b7701a34ecf6316469e05b79bb91de2addfa.tar.bz2
bpo-26467: Adds AsyncMock for asyncio Mock library support (GH-9296)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-13-20-33-24.bpo-26467.cahAk3.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-13-20-33-24.bpo-26467.cahAk3.rst b/Misc/NEWS.d/next/Library/2018-09-13-20-33-24.bpo-26467.cahAk3.rst
new file mode 100644
index 0000000..4cf3f2a
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-13-20-33-24.bpo-26467.cahAk3.rst
@@ -0,0 +1,2 @@
+Added AsyncMock to support using unittest to mock asyncio coroutines.
+Patch by Lisa Roach.