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:
@@ -4,12 +4,13 @@ from _typeshed import StrOrBytesPath
|
||||
from collections.abc import Iterable
|
||||
from importlib.metadata import PackagePath as _PackagePath
|
||||
from pathlib import Path
|
||||
from typing import Final, TypedDict
|
||||
from typing import Final, TypedDict, type_check_only
|
||||
|
||||
CONDA_ROOT: Final[Path]
|
||||
CONDA_META_DIR: Final[Path]
|
||||
PYTHONPATH_PREFIXES: Final[list[Path]]
|
||||
|
||||
@type_check_only
|
||||
class _RawDict(TypedDict):
|
||||
name: str
|
||||
version: str
|
||||
|
||||
Reference in New Issue
Block a user