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 mjpieters
Recipients amaury.forgeotdarc, barry, benjamin.peterson, georg.brandl, jcea, mjpieters, ncoghlan, rhettinger, terry.reedy
Date 2014-08-27.10:53:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1409136780.5.0.812195332662.issue3473@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation change in this patch introduced a bug in the Call grammar:

| "*" `expression` ["," "*" `expression`] ["," "**" `expression`]

instead of

| "*" `expression` ["," `keyword_arguments`] ["," "**" `expression`]

giving the impression that `*expression` is allowed twice.
History
Date User Action Args
2014-08-27 10:53:00mjpieterssetrecipients: + mjpieters, barry, georg.brandl, rhettinger, terry.reedy, jcea, amaury.forgeotdarc, ncoghlan, benjamin.peterson
2014-08-27 10:53:00mjpieterssetmessageid: <1409136780.5.0.812195332662.issue3473@psf.upfronthosting.co.za>
2014-08-27 10:53:00mjpieterslinkissue3473 messages
2014-08-27 10:53:00mjpieterscreate