This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
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 -> closed type: behavior versions: + Python 3.6, Python 3.7 nosy: + berker.peksag messages: + msg283230 resolution: fixed stage: resolved |
| 2016年12月15日 02:37:57 | python-dev | set | nosy:
+ python-dev messages: + msg283229 |
| 2016年12月13日 20:17:16 | josh.r | set | nosy:
- josh.r |
| 2016年12月13日 01:03:37 | josh.r | set | nosy:
+ josh.r messages: + msg283066 |
| 2016年12月12日 12:13:05 | woo yoo | set | messages:
+ msg282988 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 | |