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 woo yoo
Recipients docs@python, woo yoo
Date 2016-12-13.02:22:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481595766.74.0.577639992265.issue28954@psf.upfronthosting.co.za>
In-reply-to
Content
This is the documented rule, which lacks a comma within the last line.
keywords_arguments   ::=  (keyword_item | "**" expression)
                          ("," keyword_item | "**" expression)*
The correct form should be:
keywords_arguments   ::=  (keyword_item | "**" expression)
                          ("," keyword_item |",""**" expression)*

The original documentation is https://docs.python.org/3/reference/expressions.html#calls
History
Date User Action Args
2016-12-13 02:22:46woo yoosetrecipients: + woo yoo, docs@python
2016-12-13 02:22:46woo yoosetmessageid: <1481595766.74.0.577639992265.issue28954@psf.upfronthosting.co.za>
2016-12-13 02:22:46woo yoolinkissue28954 messages
2016-12-13 02:22:45woo yoocreate