summaryrefslogtreecommitdiff
path: root/Doc/library
diff options
context:
space:
mode:
authorShantanu <hauntsaninja@users.noreply.github.com>2020-02-28 15:25:36 -0800
committerGitHub <noreply@github.com>2020-02-28 18:25:36 -0500
commitc2f7eb254bee036afc8a71437ec6aac82f06a1ce (patch)
treed1b0df657de3b33eb259fa555720de18541328eb /Doc/library
parent916895f93905f8b8dad677cceff501833f5a633a (diff)
downloadcpython-git-c2f7eb254bee036afc8a71437ec6aac82f06a1ce.tar.gz
bpo-39718: add TYPE_IGNORE, COLONEQUAL to py38 changes in token (GH-18598)
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/token.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/token.rst b/Doc/library/token.rst
index 1777929be7..dab8f0fa9b 100644
--- a/Doc/library/token.rst
+++ b/Doc/library/token.rst
@@ -87,7 +87,7 @@ the :mod:`tokenize` module.
now tokenized as :data:`NAME` tokens.
.. versionchanged:: 3.8
- Added :data:`TYPE_COMMENT`.
+ Added :data:`TYPE_COMMENT`, :data:`TYPE_IGNORE`, :data:`COLONEQUAL`.
Added :data:`AWAIT` and :data:`ASYNC` tokens back (they're needed
to support parsing older Python versions for :func:`ast.parse` with
``feature_version`` set to 6 or lower).