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 mark.dickinson
Recipients mark.dickinson
Date 2010-07-12.14:30:15
SpamBayes Score 0.010288309
Marked as misclassified No
Message-id <1278945017.29.0.842296068848.issue9232@psf.upfronthosting.co.za>
In-reply-to
Content
Python's current grammar allows a trailing comma after the argument list in:

def f(a, b,):
    pass

but not in

def f(*, a, b,):
    pass

I propose allowing trailing commas in both situations.

See python-dev discussion starting at

http://mail.python.org/pipermail/python-dev/2010-July/101636.html
History
Date User Action Args
2010-07-12 14:30:17mark.dickinsonsetrecipients: + mark.dickinson
2010-07-12 14:30:17mark.dickinsonsetmessageid: <1278945017.29.0.842296068848.issue9232@psf.upfronthosting.co.za>
2010-07-12 14:30:15mark.dickinsonlinkissue9232 messages
2010-07-12 14:30:15mark.dickinsoncreate