diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-02-13 09:19:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 09:19:20 (GMT) |
commit | 59852bbcc38ed4b5d6da7208e0e6b96456028523 (patch) | |
tree | b458c990760653fc263a688c8f5e3980be843109 | |
parent | 6c0e3dc8ef958e1d2eb2fc4e59a9152e85e65da0 (diff) | |
download | cpython-59852bbcc38ed4b5d6da7208e0e6b96456028523.zip cpython-59852bbcc38ed4b5d6da7208e0e6b96456028523.tar.gz cpython-59852bbcc38ed4b5d6da7208e0e6b96456028523.tar.bz2 |
Correct trivial grammar in reset_mock docs (GH-101861)
(cherry picked from commit a1f08f5f19753c7c9295f51b5ae1262c7a1c838f)
Co-authored-by: Steve Kowalik <steven@wedontsleep.org>
-rw-r--r-- | Doc/library/unittest.mock.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst index 7947f09..3b5087a 100644 --- a/Doc/library/unittest.mock.rst +++ b/Doc/library/unittest.mock.rst @@ -406,7 +406,7 @@ the *new_callable* argument to :func:`patch`. False .. versionchanged:: 3.6 - Added two keyword only argument to the reset_mock function. + Added two keyword-only arguments to the reset_mock function. This can be useful where you want to make a series of assertions that reuse the same object. Note that :meth:`reset_mock` *doesn't* clear the @@ -416,8 +416,8 @@ the *new_callable* argument to :func:`patch`. parameter as ``True``. Child mocks and the return value mock (if any) are reset as well. - .. note:: *return_value*, and :attr:`side_effect` are keyword only - argument. + .. note:: *return_value*, and :attr:`side_effect` are keyword-only + arguments. .. method:: mock_add_spec(spec, spec_set=False) |