massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / _symtable.pyi
1 from typing import List, Dict\r
2 \r
3 CELL = ...  # type: int\r
4 DEF_BOUND = ...  # type: int\r
5 DEF_FREE = ...  # type: int\r
6 DEF_FREE_CLASS = ...  # type: int\r
7 DEF_GLOBAL = ...  # type: int\r
8 DEF_IMPORT = ...  # type: int\r
9 DEF_LOCAL = ...  # type: int\r
10 DEF_PARAM = ...  # type: int\r
11 FREE = ...  # type: int\r
12 GLOBAL_EXPLICIT = ...  # type: int\r
13 GLOBAL_IMPLICIT = ...  # type: int\r
14 LOCAL = ...  # type: int\r
15 OPT_BARE_EXEC = ...  # type: int\r
16 OPT_EXEC = ...  # type: int\r
17 OPT_IMPORT_STAR = ...  # type: int\r
18 SCOPE_MASK = ...  # type: int\r
19 SCOPE_OFF = ...  # type: int\r
20 TYPE_CLASS = ...  # type: int\r
21 TYPE_FUNCTION = ...  # type: int\r
22 TYPE_MODULE = ...  # type: int\r
23 USE = ...  # type: int\r
24 \r
25 class _symtable_entry(object):\r
26     ...\r
27 \r
28 class symtable(object):\r
29     children = ...  # type: List[_symtable_entry]\r
30     id = ...  # type: int\r
31     lineno = ...  # type: int\r
32     name = ...  # type: str\r
33     nested = ...  # type: int\r
34     optimized = ...  # type: int\r
35     symbols = ...  # type: Dict[str, int]\r
36     type = ...  # type: int\r
37     varnames = ...  # type: List[str]\r
38 \r
39     def __init__(self, src: str, filename: str, startstr: str) -> None: ...\r