diff options
author | Shantanu <12621235+hauntsaninja@users.noreply.github.com> | 2022-12-24 20:39:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-24 20:39:27 (GMT) |
commit | 9975d4e7bac052c320880e026f757cddaa91b4bf (patch) | |
tree | 23ab1fb87e575d8f5eff6a0b65846fbe86055384 /Misc | |
parent | ad8d2ef54ffde39c6d59c4fc6c0e9b8c529b306d (diff) | |
download | cpython-9975d4e7bac052c320880e026f757cddaa91b4bf.zip cpython-9975d4e7bac052c320880e026f757cddaa91b4bf.tar.gz cpython-9975d4e7bac052c320880e026f757cddaa91b4bf.tar.bz2 |
[3.10] gh-100287: Fix unittest.mock.seal with AsyncMock (GH-100496) (#100508)
(cherry picked from commit e4b43ebb3afbd231a4e5630e7e358aa3093f8677)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-12-24-08-42-05.gh-issue-100287.n0oEuG.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-12-24-08-42-05.gh-issue-100287.n0oEuG.rst b/Misc/NEWS.d/next/Library/2022-12-24-08-42-05.gh-issue-100287.n0oEuG.rst new file mode 100644 index 0000000..b353f08 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-12-24-08-42-05.gh-issue-100287.n0oEuG.rst @@ -0,0 +1 @@ +Fix the interaction of :func:`unittest.mock.seal` with :class:`unittest.mock.AsyncMock`. |