This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kermode
Recipients
Date 2004-11-22.20:26:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In section 5.2.4 of the Python Reference Manual for
Pythons 2.4 and 2.3 the definition

testlist ::= test ( "," test )* [ "," ]

should be

testlist ::= test [ ( "," test )+ [ "," ] ]

to conform with the definition of testlist_safe in the
Grammar definition file. In other words, a trailing
comma is not permitted if there is only one test in
testlist.
History
Date User Action Args
2007-08-23 14:27:43adminlinkissue1071248 messages
2007-08-23 14:27:43admincreate