[issue28944] A lack of comma within EBNF rule of keywords_arguments
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@python components: Documentation messages: 282987 nosy: docs@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@bugs.python.org> <http://bugs.python.org/issue28944> _______________________________________
woo yoo added the comment: There is no line 6 between line 7 and line 5. Here is the original documentationhttps://docs.python.org/3/library/stdtypes.html#old-string-formatting ---------- title: A lack of comma within EBNF rule of keywords_arguments -> A lack of line 6 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue28944> _______________________________________
Josh Rosenberg added the comment: You're reusing the same issue for completely different things. Make a separate issue for separate docs issues. ---------- nosy: +josh.r _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue28944> _______________________________________
Changes by Josh Rosenberg <shadowranger+python@gmail.com>: ---------- nosy: -josh.r _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue28944> _______________________________________
Roundup Robot added the comment: New changeset a89469328b78 by Berker Peksag in branch '3.5': Issue #28944: Fix footnote numbering https://hg.python.org/cpython/rev/a89469328b78 New changeset 502f5d53fb4a by Berker Peksag in branch '3.6': Issue #28944: Merge from 3.5 https://hg.python.org/cpython/rev/502f5d53fb4a New changeset 13b600dc4ee5 by Berker Peksag in branch 'default': Issue #28944: Merge from 3.6 https://hg.python.org/cpython/rev/13b600dc4ee5 ---------- nosy: +python-dev _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue28944> _______________________________________
Berker Peksag added the comment: Thanks for the report, woo woo. ---------- nosy: +berker.peksag resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker <report@bugs.python.org> <http://bugs.python.org/issue28944> _______________________________________
participants (4)
-
Berker Peksag -
Josh Rosenberg -
Roundup Robot -
woo yoo