diff options
author | John Belmonte <john@neggie.net> | 2019-11-20 00:30:43 (GMT) |
---|---|---|
committer | Lisa Roach <lisaroach14@gmail.com> | 2019-11-20 00:30:43 (GMT) |
commit | 279d8df5e5e8bbd4429420649359f7afcb4c8cce (patch) | |
tree | 9432589faee8cf742d22d5aa144527437f7ebe83 | |
parent | 444b39bb64aa894d3f1831210a8ce40042a5a532 (diff) | |
download | cpython-279d8df5e5e8bbd4429420649359f7afcb4c8cce.zip cpython-279d8df5e5e8bbd4429420649359f7afcb4c8cce.tar.gz cpython-279d8df5e5e8bbd4429420649359f7afcb4c8cce.tar.bz2 |
bpo-38753: AsyncMock added in version 3.8 (GH-17102)
-rw-r--r-- | Doc/library/unittest.mock.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 746cf76..7faecff 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -915,6 +915,7 @@ object:: >>> mock.async_foo <AsyncMock name='mock.async_foo' id='...'> + .. versionadded:: 3.8 .. method:: assert_awaited() |