mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-07-10 18:36:31 +08:00
Mark stub-only private symbols as @type_check_only in third-party stubs (#14545)
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
from collections.abc import Callable, Mapping
|
||||
from typing import Any, Generic, TypeVar, overload
|
||||
from typing import Any, Generic, TypeVar, overload, type_check_only
|
||||
|
||||
_T = TypeVar("_T")
|
||||
_S = TypeVar("_S")
|
||||
|
||||
@type_check_only
|
||||
class _SingleDispatchCallable(Generic[_T]):
|
||||
registry: Mapping[Any, Callable[..., _T]]
|
||||
def dispatch(self, cls: Any) -> Callable[..., _T]: ...
|
||||
|
||||
Reference in New Issue
Block a user