Skip to content

Commit 017a40e

Browse files
authored
and consequently
1 parent c86d75a commit 017a40e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/faq/programming.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ How do I write a function with output parameters (call by reference)?
512512

513513
Remember that arguments are passed by assignment in Python. Since assignment
514514
just creates references to objects, there's no alias between an argument name in
515-
the caller and callee, and so no call-by-reference as such. You can achieve the
515+
the caller and callee, and consequently no call-by-reference. You can achieve the
516516
desired effect in a number of ways.
517517

518518
1) By returning a tuple of the results::

0 commit comments

Comments
 (0)