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
@@ -1,6 +1,6 @@
import logging
from collections.abc import Mapping, Sequence
from typing import IO, ClassVar, TypedDict
from typing import IO, ClassVar, TypedDict, type_check_only
from .util import Context
@@ -19,6 +19,7 @@ class Labels(KeyValues): ...
class Envs(KeyValues): ...
class Args(KeyValues): ...
@type_check_only
class _InstructionDict(TypedDict):
instruction: str
startline: int