Issue 28944: A lack of line 6 (original) (raw)

Issue28944

Created on 2016-12-12 12:10 by woo yoo, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (5)
msg282987 - (view) Author: woo yoo (woo yoo) Date: 2016-12-12 12:10
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
msg282988 - (view) Author: woo yoo (woo yoo) Date: 2016-12-12 12:13
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
msg283066 - (view) Author: Josh Rosenberg (josh.r) * (Python triager) Date: 2016-12-13 01:03
You're reusing the same issue for completely different things. Make a separate issue for separate docs issues.
msg283229 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-12-15 02:37
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
msg283230 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2016-12-15 02:38
Thanks for the report, woo woo.
History
Date User Action Args
2022-04-11 14:58:40 admin set github: 73130
2016-12-15 02:38:41 berker.peksag set status: open -> closedtype: behaviorversions: + Python 3.6, Python 3.7nosy: + berker.peksagmessages: + resolution: fixedstage: resolved
2016-12-15 02:37:57 python-dev set nosy: + python-devmessages: +
2016-12-13 20:17:16 josh.r set nosy: - josh.r
2016-12-13 01:03:37 josh.r set nosy: + josh.rmessages: +
2016-12-12 12:13:05 woo yoo set messages: + title: A lack of comma within EBNF rule of keywords_arguments -> A lack of line 6
2016-12-12 12:10:28 woo yoo create