mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-02 22:18:28 +08:00
Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
import threading
|
||||
from collections.abc import Iterator
|
||||
from types import TracebackType
|
||||
from typing import Literal, Protocol
|
||||
from typing import Literal, Protocol, type_check_only
|
||||
from typing_extensions import Self
|
||||
|
||||
__version__: str
|
||||
|
||||
@type_check_only
|
||||
class _Stream(Protocol):
|
||||
def isatty(self) -> bool: ...
|
||||
def flush(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user