diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-30 18:25:22 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-30 18:25:22 (GMT) |
commit | 592563292c7d0e2276c7636f1acf95a43db4668b (patch) | |
tree | 3a3fe4d08dc6593d30bf7736434c04e9efd313cd /Doc/reference | |
parent | 497cd65cec874d9ed9d02581b6600a3b19849bc8 (diff) | |
download | cpython-592563292c7d0e2276c7636f1acf95a43db4668b.zip cpython-592563292c7d0e2276c7636f1acf95a43db4668b.tar.gz cpython-592563292c7d0e2276c7636f1acf95a43db4668b.tar.bz2 |
#12531: Fix spaces and markup.
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/expressions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index d85a9c6..655ebde 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -673,7 +673,7 @@ there were no excess keyword arguments. If the syntax ``*expression`` appears in the function call, ``expression`` must evaluate to an iterable. Elements from this iterable are treated as if they were additional positional arguments; if there are positional arguments -*x1*, ... ,*xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, +*x1*, ..., *xN*, and ``expression`` evaluates to a sequence *y1*, ..., *yM*, this is equivalent to a call with M+N positional arguments *x1*, ..., *xN*, *y1*, ..., *yM*. |