[New-bugs-announce] [issue28954] Incorrect EBNF rule of keywords_arguments

woo yoo report at bugs.python.org
Mon Dec 12 21:22:46 EST 2016


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 | "**" expression)
                          ("," keyword_item |",""**" expression)*

The original documentation is https://docs.python.org/3/reference/expressions.html#calls

----------
assignee: docs at python
components: Documentation
messages: 283067
nosy: docs at python, woo yoo
priority: normal
severity: normal
status: open
title: Incorrect EBNF rule of keywords_arguments
versions: Python 3.5

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue28954>
_______________________________________


More information about the New-bugs-announce mailing list