diff options
| author | Yury Selivanov <yselivanov@sprymix.com> | 2015-12-17 18:26:53 -0500 |
|---|---|---|
| committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-12-17 18:26:53 -0500 |
| commit | 7f955ab16a92ec4cb1494ca765cfbfb29df8b5f5 (patch) | |
| tree | 739a3d7401a87868d5416e395d1cae65c737f8f1 | |
| parent | 7f27d4382e89b59bd7bd5209ade332492b7ec235 (diff) | |
| parent | 3dc74bf703d433a4060f6911ecfbc98be7ba267f (diff) | |
| download | cpython-git-7f955ab16a92ec4cb1494ca765cfbfb29df8b5f5.tar.gz | |
Merge 3.5
| -rw-r--r-- | Doc/library/token.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/token.rst b/Doc/library/token.rst index 88fb38bc1d..c6bfa354d9 100644 --- a/Doc/library/token.rst +++ b/Doc/library/token.rst @@ -97,10 +97,16 @@ The token constants are: RARROW ELLIPSIS OP + AWAIT + ASYNC ERRORTOKEN N_TOKENS NT_OFFSET + .. versionchanged:: 3.5 + Added :data:`AWAIT` and :data:`ASYNC` tokens. Starting with + Python 3.7, "async" and "await" will be tokenized as :data:`NAME` + tokens, and :data:`AWAIT` and :data:`ASYNC` will be removed. .. seealso:: |
