mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +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]: ...
|
||||
|
||||
@@ -32,7 +32,6 @@ platform.uname_result.__new__
|
||||
platform.uname_result._fields
|
||||
platform.uname_result.processor
|
||||
re.Pattern.scanner # Undocumented and not useful. #6405
|
||||
symtable.SymbolTable.has_exec
|
||||
sys.UnraisableHookArgs # Not exported from sys
|
||||
tkinter.Tk.split
|
||||
types.GenericAlias.__getattr__
|
||||
|
||||
@@ -78,7 +78,6 @@ shutil.rmtree
|
||||
socketserver.UDPServer.allow_reuse_port
|
||||
string.Template.get_identifiers
|
||||
string.Template.is_valid
|
||||
symtable.SymbolTable.has_exec
|
||||
sys.UnraisableHookArgs # Not exported from sys
|
||||
sys.exception
|
||||
tkinter._VersionInfoType.__doc__
|
||||
|
||||
@@ -56,7 +56,6 @@ re.Pattern.scanner # Undocumented and not useful. #6405
|
||||
sched.Event.__doc__ # __slots__ is overridden
|
||||
ssl.PROTOCOL_SSLv3 # Depends on ssl compilation
|
||||
ssl.RAND_egd # Depends on openssl compilation
|
||||
symtable.SymbolTable.has_exec
|
||||
sys.UnraisableHookArgs # Not exported from sys
|
||||
tkinter.Tk.split
|
||||
types.CodeType.replace # stubtest thinks default values are None but None doesn't work at runtime
|
||||
|
||||
Reference in New Issue
Block a user