diff options
author | Lisa Roach <lisaroach14@gmail.com> | 2019-05-20 16:19:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-20 16:19:53 (GMT) |
commit | 77b3b7701a34ecf6316469e05b79bb91de2addfa (patch) | |
tree | 305506415c811e5a01e4ee783f3346f0359b17a2 /Misc | |
parent | 0f72147ce2b3d65235b41eddc6a57be40237b5c7 (diff) | |
download | cpython-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.rst | 2 |
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. |