mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-19 22:50:29 +08:00
Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)
This commit is contained in:
@@ -3,7 +3,7 @@ from _typeshed import SupportsWrite, TraceFunction
|
||||
from collections.abc import Callable
|
||||
from pdb import Pdb
|
||||
from types import FrameType
|
||||
from typing import Any, Literal, Protocol, TypeVar
|
||||
from typing import Any, Literal, Protocol, TypeVar, type_check_only
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
from .watch_element import WatchElement
|
||||
@@ -64,5 +64,6 @@ class Watch:
|
||||
def uninstall(self, func: _Identifier = "watch") -> None: ...
|
||||
def unwatch(self, *args: object) -> None: ...
|
||||
|
||||
@type_check_only
|
||||
class _TraceFunc(Protocol):
|
||||
def __call__(self, frame: FrameType, event: str, arg: object) -> _TraceFunc: ...
|
||||
|
||||
Reference in New Issue
Block a user