X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785..HEAD:/.vim/bundle/black/src/blib2to3/pgen2/token.py diff --git a/.vim/bundle/black/src/blib2to3/pgen2/token.py b/.vim/bundle/black/src/blib2to3/pgen2/token.py index 1e0dec9..ed2fc4e 100644 --- a/.vim/bundle/black/src/blib2to3/pgen2/token.py +++ b/.vim/bundle/black/src/blib2to3/pgen2/token.py @@ -1,12 +1,6 @@ """Token constants (from "token.h").""" -import sys -from typing import Dict - -if sys.version_info < (3, 8): - from typing_extensions import Final -else: - from typing import Final +from typing import Dict, Final # Taken from Python (r53757) and modified to include some tokens # originally monkeypatched in by pgen2.tokenize @@ -78,7 +72,7 @@ NT_OFFSET: Final = 256 tok_name: Final[Dict[int, str]] = {} for _name, _value in list(globals().items()): - if type(_value) is type(0): + if type(_value) is int: tok_name[_value] = _name