[docs] [issue28944] A lack of comma within EBNF rule of keywords_arguments

woo yoo report at bugs.python.org
Mon Dec 12 07:10:28 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: 282987
nosy: docs at python, woo yoo
priority: normal
severity: normal
status: open
title: A lack of comma within EBNF rule of keywords_arguments
versions: Python 3.5

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


More information about the docs mailing list