diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-30 18:26:40 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-07-30 18:26:40 (GMT) |
commit | 6e3b975aa525ef8f824e6258d89fb8dc2c4508c2 (patch) | |
tree | 6aa484e9e6ec00864f1b498a6ac846d5cd5821b1 | |
parent | 98f2b9bff0c3d884fdcf827a10b856afcde13bc2 (diff) | |
parent | 592563292c7d0e2276c7636f1acf95a43db4668b (diff) | |
download | cpython-6e3b975aa525ef8f824e6258d89fb8dc2c4508c2.zip cpython-6e3b975aa525ef8f824e6258d89fb8dc2c4508c2.tar.gz cpython-6e3b975aa525ef8f824e6258d89fb8dc2c4508c2.tar.bz2 |
#12531: merge with 3.2.
-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*. |