This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Andrius Gobis
Recipients Andrius Gobis, docs@python
Date 2020-05-29.18:04:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1590775441.68.0.287476629705.issue40820@roundup.psfhosted.org>
In-reply-to
Content
In Python 3.8, the ``args`` and ``kwargs`` properties were added to Mock ``Call`` objects (PR: https://github.com/python/cpython/pull/11807 Issue: https://bugs.python.org/issue21269).

However, the change did not add a change version to the documentation.

The ``Doc/library/unittest.mock.rst`` file should include the following in the ``Call`` section:
```
The ``Doc/library/unittest.mock.rst`` file should include the following in the ``Call`` section:
```
   .. versionchanged:: 3.8

      Added the ``args`` and ``kwargs`` properties to more easily access the positional args and keyword args within a ``Call``        object tuple.
```
History
Date User Action Args
2020-05-29 18:04:01Andrius Gobissetrecipients: + Andrius Gobis, docs@python
2020-05-29 18:04:01Andrius Gobissetmessageid: <1590775441.68.0.287476629705.issue40820@roundup.psfhosted.org>
2020-05-29 18:04:01Andrius Gobislinkissue40820 messages
2020-05-29 18:04:01Andrius Gobiscreate