Add @type_check_only to various typeshed-only procotols in stdlib (#14465)

Mark various typeshed-only protocols as `@type_check_only` in stdlib
This commit is contained in:
Brian Schubert
2025-07-26 20:02:17 +01:00
committed by GitHub
parent e2d0c451e2
commit f88a09d479
15 changed files with 42 additions and 19 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
from _typeshed import StrPath
from collections.abc import Callable
from typing import Any, BinaryIO, Protocol, overload
from typing import Any, BinaryIO, Protocol, overload, type_check_only
__all__ = ["what"]
@type_check_only
class _ReadableBinary(Protocol):
def tell(self) -> int: ...
def read(self, size: int, /) -> bytes: ...