[issue28954] Incorrect EBNF rule of keywords_arguments

2016-12-24 Thread Martin Panter
Martin Panter added the comment: Thanks for finding this Woo! -- resolution: -> fixed stage: -> resolved status: open -> closed versions: +Python 3.6, Python 3.7 ___ Python tracker

[issue28954] Incorrect EBNF rule of keywords_arguments

2016-12-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3f94e3c7dcc5 by Martin Panter in branch '3.5': Issue #28954: Add missing comma to keyword argument syntax https://hg.python.org/cpython/rev/3f94e3c7dcc5 New changeset ef53ef8e09e5 by Martin Panter in branch '3.6': Issue #28954: Merge keyword

[issue28954] Incorrect EBNF rule of keywords_arguments

2016-12-14 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +martin.panter ___ Python tracker ___ ___

[issue28954] Incorrect EBNF rule of keywords_arguments

2016-12-12 Thread woo yoo
New submission from woo yoo: 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 |