massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2 / _symtable.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2/_symtable.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/2/_symtable.pyi
new file mode 100644 (file)
index 0000000..44d079f
--- /dev/null
@@ -0,0 +1,39 @@
+from typing import List, Dict\r
+\r
+CELL = ...  # type: int\r
+DEF_BOUND = ...  # type: int\r
+DEF_FREE = ...  # type: int\r
+DEF_FREE_CLASS = ...  # type: int\r
+DEF_GLOBAL = ...  # type: int\r
+DEF_IMPORT = ...  # type: int\r
+DEF_LOCAL = ...  # type: int\r
+DEF_PARAM = ...  # type: int\r
+FREE = ...  # type: int\r
+GLOBAL_EXPLICIT = ...  # type: int\r
+GLOBAL_IMPLICIT = ...  # type: int\r
+LOCAL = ...  # type: int\r
+OPT_BARE_EXEC = ...  # type: int\r
+OPT_EXEC = ...  # type: int\r
+OPT_IMPORT_STAR = ...  # type: int\r
+SCOPE_MASK = ...  # type: int\r
+SCOPE_OFF = ...  # type: int\r
+TYPE_CLASS = ...  # type: int\r
+TYPE_FUNCTION = ...  # type: int\r
+TYPE_MODULE = ...  # type: int\r
+USE = ...  # type: int\r
+\r
+class _symtable_entry(object):\r
+    ...\r
+\r
+class symtable(object):\r
+    children = ...  # type: List[_symtable_entry]\r
+    id = ...  # type: int\r
+    lineno = ...  # type: int\r
+    name = ...  # type: str\r
+    nested = ...  # type: int\r
+    optimized = ...  # type: int\r
+    symbols = ...  # type: Dict[str, int]\r
+    type = ...  # type: int\r
+    varnames = ...  # type: List[str]\r
+\r
+    def __init__(self, src: str, filename: str, startstr: str) -> None: ...\r