diff options
author | Lisa Roach <lisaroach14@gmail.com> | 2019-09-20 04:04:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-20 04:04:18 (GMT) |
commit | 8b03f943c37e07fb2394acdcfacd066647f9b1fd (patch) | |
tree | c1e3951fe13dc337f99b78bd3521867dd19c2ac6 /Misc/NEWS.d/next/Library | |
parent | 2702638eabe5f7b25f36d295f0ad78cb8d4eda05 (diff) | |
download | cpython-8b03f943c37e07fb2394acdcfacd066647f9b1fd.zip cpython-8b03f943c37e07fb2394acdcfacd066647f9b1fd.tar.gz cpython-8b03f943c37e07fb2394acdcfacd066647f9b1fd.tar.bz2 |
bpo-38093: Correctly returns AsyncMock for async subclasses. (GH-15947)
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-09-11-14-45-30.bpo-38093.yQ6k7y.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-09-11-14-45-30.bpo-38093.yQ6k7y.rst b/Misc/NEWS.d/next/Library/2019-09-11-14-45-30.bpo-38093.yQ6k7y.rst new file mode 100644 index 0000000..24a5301 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-09-11-14-45-30.bpo-38093.yQ6k7y.rst @@ -0,0 +1,2 @@ +Fixes AsyncMock so it doesn't crash when used with AsyncContextManagers +or AsyncIterators. |