diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-07-18 13:14:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-18 13:14:32 (GMT) |
commit | f92544483fc724b7e9ac11b2ee86b38e069cc70f (patch) | |
tree | 99e5cf1586b38bd733426b388f948f26c847e68e | |
parent | 760552ceb8c5f5ca4f1bf13f47543b42b25e0b83 (diff) | |
download | cpython-f92544483fc724b7e9ac11b2ee86b38e069cc70f.zip cpython-f92544483fc724b7e9ac11b2ee86b38e069cc70f.tar.gz cpython-f92544483fc724b7e9ac11b2ee86b38e069cc70f.tar.bz2 |
bpo-41325: Add version note for args and kwargs property in call object (GH-21525)
(cherry picked from commit 9b01c598ca2576a1056816e85dd84bf5f9c74688)
Co-authored-by: Jordan Speicher <uSpike@users.noreply.github.com>
-rw-r--r-- | Doc/library/unittest.mock.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 3643d1a..c5360f9 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -647,6 +647,9 @@ the *new_callable* argument to :func:`patch`. arguments and make more complex assertions. See :ref:`calls as tuples <calls-as-tuples>`. + .. versionchanged:: 3.8 + Added ``args`` and ``kwargs`` properties. + .. attribute:: call_args_list |