massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / token.pyi
1 import sys\r
2 from typing import Dict\r
3 \r
4 ENDMARKER = ...  # type: int\r
5 NAME = ...  # type: int\r
6 NUMBER = ...  # type: int\r
7 STRING = ...  # type: int\r
8 NEWLINE = ...  # type: int\r
9 INDENT = ...  # type: int\r
10 DEDENT = ...  # type: int\r
11 LPAR = ...  # type: int\r
12 RPAR = ...  # type: int\r
13 LSQB = ...  # type: int\r
14 RSQB = ...  # type: int\r
15 COLON = ...  # type: int\r
16 COMMA = ...  # type: int\r
17 SEMI = ...  # type: int\r
18 PLUS = ...  # type: int\r
19 MINUS = ...  # type: int\r
20 STAR = ...  # type: int\r
21 SLASH = ...  # type: int\r
22 VBAR = ...  # type: int\r
23 AMPER = ...  # type: int\r
24 LESS = ...  # type: int\r
25 GREATER = ...  # type: int\r
26 EQUAL = ...  # type: int\r
27 DOT = ...  # type: int\r
28 PERCENT = ...  # type: int\r
29 if sys.version_info < (3,):\r
30     BACKQUOTE = ...  # type: int\r
31 LBRACE = ...  # type: int\r
32 RBRACE = ...  # type: int\r
33 EQEQUAL = ...  # type: int\r
34 NOTEQUAL = ...  # type: int\r
35 LESSEQUAL = ...  # type: int\r
36 GREATEREQUAL = ...  # type: int\r
37 TILDE = ...  # type: int\r
38 CIRCUMFLEX = ...  # type: int\r
39 LEFTSHIFT = ...  # type: int\r
40 RIGHTSHIFT = ...  # type: int\r
41 DOUBLESTAR = ...  # type: int\r
42 PLUSEQUAL = ...  # type: int\r
43 MINEQUAL = ...  # type: int\r
44 STAREQUAL = ...  # type: int\r
45 SLASHEQUAL = ...  # type: int\r
46 PERCENTEQUAL = ...  # type: int\r
47 AMPEREQUAL = ...  # type: int\r
48 VBAREQUAL = ...  # type: int\r
49 CIRCUMFLEXEQUAL = ...  # type: int\r
50 LEFTSHIFTEQUAL = ...  # type: int\r
51 RIGHTSHIFTEQUAL = ...  # type: int\r
52 DOUBLESTAREQUAL = ...  # type: int\r
53 DOUBLESLASH = ...  # type: int\r
54 DOUBLESLASHEQUAL = ...  # type: int\r
55 AT = ...  # type: int\r
56 if sys.version_info >= (3,):\r
57     RARROW = ...  # type: int\r
58     ELLIPSIS = ...  # type: int\r
59 if sys.version_info >= (3, 5):\r
60     ATEQUAL = ...  # type: int\r
61     AWAIT = ...  # type: int\r
62     ASYNC = ...  # type: int\r
63 OP = ...  # type: int\r
64 ERRORTOKEN = ...  # type: int\r
65 N_TOKENS = ...  # type: int\r
66 NT_OFFSET = ...  # type: int\r
67 tok_name = ...  # type: Dict[int, str]\r
68 \r
69 def ISTERMINAL(x: int) -> bool: ...\r
70 def ISNONTERMINAL(x: int) -> bool: ...\r
71 def ISEOF(x: int) -> bool: ...\r