mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-28 22:56:55 +08:00
symtable: has_exec was removed in 3.9 (#7911)
This commit is contained in:
@@ -15,7 +15,9 @@ class SymbolTable:
|
||||
def is_optimized(self) -> bool: ...
|
||||
def is_nested(self) -> bool: ...
|
||||
def has_children(self) -> bool: ...
|
||||
def has_exec(self) -> bool: ...
|
||||
if sys.version_info < (3, 9):
|
||||
def has_exec(self) -> bool: ...
|
||||
|
||||
def get_identifiers(self) -> Sequence[str]: ...
|
||||
def lookup(self, name: str) -> Symbol: ...
|
||||
def get_symbols(self) -> list[Symbol]: ...
|
||||
|
||||
Reference in New Issue
Block a user