[issue31811] async and await missing from keyword list in lexical analysis doc

2017-11-08 Thread STINNER Victor
STINNER Victor added the comment: The final commit uses the wrong bpo number: New changeset bf9d317626eebcf79bd0756b4dd43df82d5cc186 by Yury Selivanov (Tom Floyer) in branch 'master': bpo-31810: added missing keywords to docs. (#4140) https://github.com/python/cpython/commit/bf9d317626eebcf79b

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-11-08 Thread Yury Selivanov
Change by Yury Selivanov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-11-08 Thread Tom Floyer
Change by Tom Floyer : -- pull_requests: -4095 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-26 Thread Tom Floyer
Tom Floyer added the comment: I've added those keywords to documentation master branch. -- nosy: +tomfloyer pull_requests: +4104 ___ Python tracker ___

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-26 Thread Tom Floyer
Change by Tom Floyer : -- keywords: +patch pull_requests: +4095 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-20 Thread Yury Selivanov
Yury Selivanov added the comment: Ah, you mean this list: https://docs.python.org/3/reference/lexical_analysis.html#keywords ? Your original link was a bit hard to read as it shows rest markup and not the actual list of keywords. So I missed it, sorry. I'll reopen the issue, please feel fre

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-20 Thread Colin Dunklau
Colin Dunklau added the comment: Hi Yury, perhaps I've misinterpreted PEP 492, and I can't claim to understand how the parser works and thus how the changes in https://github.com/python/cpython/pull/1669 affect things, but it seems to me that async and await are truly reserved words now, not

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-20 Thread Yury Selivanov
Yury Selivanov added the comment: They are covered here: https://github.com/python/cpython/blob/4a2d00cb4525fcb3209f04531472ba6a359ed418/Doc/reference/compound_stmts.rst#coroutines -- resolution: -> not a bug stage: -> resolved status: open -> closed

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-20 Thread Terry J. Reedy
Change by Terry J. Reedy : -- nosy: +yselivanov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-19 Thread F. Lamar
F. Lamar added the comment: I a new contributor. This seems like a simple fix. I'd be happy to work on it. I will submit ar PR on or before 10-22-17 -- nosy: +F. Lamar ___ Python tracker

[issue31811] async and await missing from keyword list in lexical analysis doc

2017-10-18 Thread Colin Dunklau
New submission from Colin Dunklau : I see that code making async/await real keywords has been merged, but it looks like Doc/reference/lexical_analysis.rst doesn't have those added https://github.com/python/cpython/blob/4a2d00c/Doc/reference/lexical_analysis.rst#keywords Is that lis