add types.GenericAlias.__mro_entries__ (#13284)

This commit is contained in:
Stephen Morton
2025-01-15 15:36:02 +01:00
committed by GitHub
parent 101287091c
commit 578af27510
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -640,6 +640,7 @@ if sys.version_info >= (3, 9):
def __getitem__(self, typeargs: Any, /) -> GenericAlias: ...
def __eq__(self, value: object, /) -> bool: ...
def __hash__(self) -> int: ...
def __mro_entries__(self, bases: Iterable[object], /) -> tuple[type, ...]: ...
if sys.version_info >= (3, 11):
@property
def __unpacked__(self) -> bool: ...