Update issues numbers for builtins.function (#12580)

This commit is contained in:
Sebastian Rittau
2024-08-22 19:20:28 +02:00
committed by GitHub
parent 98af3eb9da
commit 073b270e55

View File

@@ -968,7 +968,9 @@ class tuple(Sequence[_T_co]):
if sys.version_info >= (3, 9):
def __class_getitem__(cls, item: Any, /) -> GenericAlias: ...
# Doesn't exist at runtime, but deleting this breaks mypy. See #2999
# Doesn't exist at runtime, but deleting this breaks mypy and pyright. See:
# https://github.com/python/typeshed/issues/7580
# https://github.com/python/mypy/issues/8240
@final
@type_check_only
class function: