mirror of https://github.com/python/cpython
#3923: fix undefined token.
This commit is contained in:
parent
af079d4c14
commit
dc529c1e1f
|
@ -598,8 +598,7 @@ A call calls a callable object (e.g., a function) with a possibly empty series
|
||||||
of arguments:
|
of arguments:
|
||||||
|
|
||||||
.. productionlist::
|
.. productionlist::
|
||||||
call: `primary` "(" [`argument_list` [","]
|
call: `primary` "(" [`argument_list` [","] | `comprehension`] ")"
|
||||||
: | `expression` `genexpr_for`] ")"
|
|
||||||
argument_list: `positional_arguments` ["," `keyword_arguments`]
|
argument_list: `positional_arguments` ["," `keyword_arguments`]
|
||||||
: ["," "*" `expression`] ["," `keyword_arguments`]
|
: ["," "*" `expression`] ["," `keyword_arguments`]
|
||||||
: ["," "**" `expression`]
|
: ["," "**" `expression`]
|
||||||
|
|
Loading…
Reference in New Issue