Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)

This commit is contained in:
Brian Schubert
2025-08-08 05:29:48 -04:00
committed by GitHub
parent a358dc24e8
commit 81c8fcb2e6
131 changed files with 334 additions and 147 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
from asyncio import ReadTransport
from collections.abc import Awaitable, Callable, Iterable
from re import Match, Pattern
from typing import IO, AnyStr, Generic, Literal, Protocol, TextIO, overload
from typing import IO, AnyStr, Generic, Literal, Protocol, TextIO, overload, type_check_only
from typing_extensions import TypeAlias
from ._async import PatternWaiter
@@ -17,6 +17,7 @@ class _NullCoder:
@staticmethod
def decode(b: str, final: bool = False): ...
@type_check_only
class _Logfile(Protocol):
def write(self, s, /) -> object: ...
def flush(self) -> object: ...