bpo-39718: add TYPE_IGNORE, COLONEQUAL to py38 changes in token (GH-18598)
(cherry picked from commit c2f7eb254bee036afc8a71437ec6aac82f06a1ce)
Co-authored-by: Shantanu <hauntsaninja@users.noreply.github.com>
diff --git a/Doc/library/token.rst b/Doc/library/token.rst
index 1777929..dab8f0f 100644
--- a/Doc/library/token.rst
+++ b/Doc/library/token.rst
@@ -87,7 +87,7 @@
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).