[issue31390] pydoc.Helper.keywords missing async and await

2017-11-01 Thread Berker Peksag
Berker Peksag added the comment: Thank you for your report. Prior to Python 3.7, async and await keywords have had special meanings and they weren't treated as normal keywords. They are now in Python 3.7: >>> async = 42 File "", line 1 async = 42 ^ SyntaxError: invalid syntax

[issue31390] pydoc.Helper.keywords missing async and await

2017-09-07 Thread Robert Weiner
Changes by Robert Weiner : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue31390] pydoc.Helper.keywords missing async and await

2017-09-07 Thread Robert Weiner
New submission from Robert Weiner: Shouldn't async and await be added to the pydoc keywords list? -- assignee: docs@python components: Documentation messages: 301657 nosy: docs@python, rsw priority: normal severity: normal status: open title: pydoc.Helper.keywords missing async and await