mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-18 14:20:11 +08:00
Drop Python 3.8 branches (#13776)
This commit is contained in:
+2
-6
@@ -36,9 +36,6 @@ class SymbolTable:
|
||||
def is_optimized(self) -> bool: ...
|
||||
def is_nested(self) -> bool: ...
|
||||
def has_children(self) -> bool: ...
|
||||
if sys.version_info < (3, 9):
|
||||
def has_exec(self) -> bool: ...
|
||||
|
||||
def get_identifiers(self) -> dict_keys[str, int]: ...
|
||||
def lookup(self, name: str) -> Symbol: ...
|
||||
def get_symbols(self) -> list[Symbol]: ...
|
||||
@@ -52,9 +49,8 @@ class Function(SymbolTable):
|
||||
def get_nonlocals(self) -> tuple[str, ...]: ...
|
||||
|
||||
class Class(SymbolTable):
|
||||
if sys.version_info < (3, 16):
|
||||
@deprecated("deprecated in Python 3.14, will be removed in Python 3.16")
|
||||
def get_methods(self) -> tuple[str, ...]: ...
|
||||
@deprecated("deprecated in Python 3.14, will be removed in Python 3.16")
|
||||
def get_methods(self) -> tuple[str, ...]: ...
|
||||
|
||||
class Symbol:
|
||||
def __init__(
|
||||
|
||||
Reference in New Issue
Block a user