[Python-3000-checkins] r66541 - python/branches/py3k/Doc/reference/expressions.rst

georg.brandl python-3000-checkins at python.org
Sun Sep 21 19:03:29 CEST 2008


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`]


More information about the Python-3000-checkins mailing list