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 chris.jerdonek
Recipients Inyeol.Lee, chris.jerdonek
Date 2012-10-25.07:46:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351151161.29.0.535003008928.issue16319@psf.upfronthosting.co.za>
In-reply-to
Content
I could be misinterpreting the documentation, but it looks to me like the examples given are behaving as documented:

parameter_list ::=  (defparameter ",")*
                    (  "*" [parameter] ("," defparameter)*
                    [, "**" parameter]
                    | "**" parameter
                    | defparameter [","] )

(from                     http://docs.python.org/dev/reference/compound_stmts.html#function-definitions )

The relevant clause in the above looks to be the following, which can't give rise to a trailing comma:

"*" [parameter] ("," defparameter)* [, "**" parameter]
History
Date User Action Args
2012-10-25 07:46:01chris.jerdoneksetrecipients: + chris.jerdonek, Inyeol.Lee
2012-10-25 07:46:01chris.jerdoneksetmessageid: <1351151161.29.0.535003008928.issue16319@psf.upfronthosting.co.za>
2012-10-25 07:46:01chris.jerdoneklinkissue16319 messages
2012-10-25 07:46:01chris.jerdonekcreate