Add @type_check_only to stub-only private classes in stdlib (#14512)

This commit is contained in:
Brian Schubert
2025-08-03 10:13:16 +02:00
committed by GitHub
parent dde70aeecd
commit 622df68c1c
61 changed files with 188 additions and 51 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
from tkinter import Event, Misc, Tk, Widget
from typing import ClassVar, Protocol
from typing import ClassVar, Protocol, type_check_only
__all__ = ["dnd_start", "DndHandler"]
@type_check_only
class _DndSource(Protocol):
def dnd_end(self, target: Widget | None, event: Event[Misc] | None, /) -> None: ...