Discussion:
[Python-3000-checkins] r66541 - python/branches/py3k/Doc/reference/expressions.rst
georg.brandl
2008-09-21 17:03:29 UTC
Permalink
Author: georg.brandl
Date: Sun Sep 21 19:03:29 2008
New Revision: 66541

Log:
#3923: fix undefined token.


Modified:
python/branches/py3k/Doc/reference/expressions.rst

Modified: python/branches/py3k/Doc/reference/expressions.rst
==============================================================================
--- python/branches/py3k/Doc/reference/expressions.rst (original)
+++ python/branches/py3k/Doc/reference/expressions.rst Sun Sep 21 19:03:29 2008
@@ -598,8 +598,7 @@
of arguments:

.. productionlist::
- call: `primary` "(" [`argument_list` [","]
- : | `expression` `genexpr_for`] ")"
+ call: `primary` "(" [`argument_list` [","] | `comprehension`] ")"
argument_list: `positional_arguments` ["," `keyword_arguments`]
: ["," "*" `expression`] ["," `keyword_arguments`]
: ["," "**" `expression`]

Loading...