Skip to content

Commit 2f5a112

Browse files
orfmiss-islington
authored andcommitted
Replace "ordered arguments" with "positional arguments" in unittest.mock documentation (GH-137552)
(cherry picked from commit 64ee1ba) Co-authored-by: Tom Forbes <[email protected]>
1 parent 5c055cd commit 2f5a112

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/unittest.mock.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ the *new_callable* argument to :func:`patch`.
639639
This is either ``None`` (if the mock hasn't been called), or the
640640
arguments that the mock was last called with. This will be in the
641641
form of a tuple: the first member, which can also be accessed through
642-
the ``args`` property, is any ordered arguments the mock was
642+
the ``args`` property, is any positional arguments the mock was
643643
called with (or an empty tuple) and the second member, which can
644644
also be accessed through the ``kwargs`` property, is any keyword
645645
arguments (or an empty dictionary).

0 commit comments

Comments
 (0)