mirror of https://github.com/python/cpython
bpo-31810: added missing keywords to docs. (#4140)
async and await keywords has been merged into upstream, but they are all missing in the lexical analysis docs. This change adds them to the appropriate keywords section in documentation.
This commit is contained in:
parent
2138163621
commit
bf9d317626
|
@ -340,13 +340,13 @@ exactly as written here:
|
||||||
|
|
||||||
.. sourcecode:: text
|
.. sourcecode:: text
|
||||||
|
|
||||||
False class finally is return
|
False await else import pass
|
||||||
None continue for lambda try
|
None break except in raise
|
||||||
True def from nonlocal while
|
True class finally is return
|
||||||
and del global not with
|
and continue for lambda try
|
||||||
as elif if or yield
|
as def from nonlocal while
|
||||||
assert else import pass
|
assert del global not with
|
||||||
break except in raise
|
async elif if or yield
|
||||||
|
|
||||||
.. _id-classes:
|
.. _id-classes:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue