#12531: Fix spaces.

This commit is contained in:
Ezio Melotti 2011-07-30 21:31:22 +03:00
parent 110b781129
commit 4cfdb077fd
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ there were no excess keyword arguments.
If the syntax ``*expression`` appears in the function call, ``expression`` must If the syntax ``*expression`` appears in the function call, ``expression`` must
evaluate to an iterable. Elements from this iterable are treated as if they evaluate to an iterable. Elements from this iterable are treated as if they
were additional positional arguments; if there are positional arguments were additional positional arguments; if there are positional arguments
*x1*,...,*xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, this *x1*, ..., *xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, this
is equivalent to a call with M+N positional arguments *x1*, ..., *xN*, *y1*, is equivalent to a call with M+N positional arguments *x1*, ..., *xN*, *y1*,
..., *yM*. ..., *yM*.