Fix typechecking under mypy 0.730 (#1039)

mypy 0.730 fixed a bug involving nonexistent attributes accessed on
modules, which caused an error since COLONEQUAL never got added to
token.pyi. Add it.
This commit is contained in:
Michael J. Sullivan 2019-10-01 15:30:51 -07:00 committed by Jelle Zijlstra
parent 0acad54c02
commit c5637a7085

View File

@ -64,6 +64,7 @@ if sys.version_info >= (3, 5):
AWAIT: int
ASYNC: int
ERRORTOKEN: int
COLONEQUAL: int
N_TOKENS: int
NT_OFFSET: int
tok_name: Dict[int, Text]