Skip to content

Commit 3bb46c6

Browse files
Fix terminology: change 'parameters' to 'arguments' in MultiCall docs
Fixes #140505 The xmlrpc.client.MultiCall documentation incorrectly used 'parameters' when it should say 'arguments'. The MultiCall object stores the call name and arguments (not parameters) since the call occurs through a getitem that returns a _MultiCallMethod callable with *args.
1 parent da1d468 commit 3bb46c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/library/xmlrpc.client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ remote server into a single request [#]_.
472472

473473
Create an object used to boxcar method calls. *server* is the eventual target of
474474
the call. Calls can be made to the result object, but they will immediately
475-
return ``None``, and only store the call name and parameters in the
475+
return ``None``, and only store the call name and arguments in the
476476
:class:`MultiCall` object. Calling the object itself causes all stored calls to
477477
be transmitted as a single ``system.multicall`` request. The result of this call
478478
is a :term:`generator`; iterating over this generator yields the individual

0 commit comments

Comments
 (0)