Added children field to Misc #4834 (#4871)

Co-authored-by: you <you@example.com>
This commit is contained in:
melassa
2020-12-30 02:09:18 +01:00
committed by GitHub
parent fb753c4226
commit 85d6df4742

View File

@@ -222,6 +222,7 @@ def getboolean(s): ...
class Misc:
master: Optional[Misc]
tk: _tkinter.TkappType
children: Dict[str, Widget]
def destroy(self): ...
def deletecommand(self, name): ...
def tk_strictMotif(self, boolean: Optional[Any] = ...): ...
@@ -538,7 +539,6 @@ class _ExceptionReportingCallback(Protocol):
class Tk(Misc, Wm):
master: None
children: Dict[str, Any]
def __init__(
self,
screenName: Optional[str] = ...,