8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad48606 commit b4c3e2cCopy full SHA for b4c3e2c
stdlib/symtable.pyi
@@ -1,4 +1,5 @@
1
import sys
2
+from _collections_abc import dict_keys
3
from collections.abc import Sequence
4
from typing import Any
5
@@ -18,7 +19,7 @@ class SymbolTable:
18
19
if sys.version_info < (3, 9):
20
def has_exec(self) -> bool: ...
21
- def get_identifiers(self) -> Sequence[str]: ...
22
+ def get_identifiers(self) -> dict_keys[str, int]: ...
23
def lookup(self, name: str) -> Symbol: ...
24
def get_symbols(self) -> list[Symbol]: ...
25
def get_children(self) -> list[SymbolTable]: ...
0 commit comments