diff --git a/stdlib/@tests/stubtest_allowlists/common.txt b/stdlib/@tests/stubtest_allowlists/common.txt index befbc32682c5..8f6257a21789 100644 --- a/stdlib/@tests/stubtest_allowlists/common.txt +++ b/stdlib/@tests/stubtest_allowlists/common.txt @@ -17,13 +17,6 @@ turtledemo turtledemo\..+ -# ====================================================================== -# TODO: Module members that exist at runtime, but are missing from stubs -# ====================================================================== - -tkinter.Misc.config - - # ====================================================================== # Modules that exist at runtime, but are deliberately missing from stubs # ====================================================================== diff --git a/stdlib/tkinter/__init__.pyi b/stdlib/tkinter/__init__.pyi index 3924150c8dc1..87d31a921bbb 100644 --- a/stdlib/tkinter/__init__.pyi +++ b/stdlib/tkinter/__init__.pyi @@ -679,8 +679,7 @@ class Misc: def __getitem__(self, key: str) -> Any: ... def cget(self, key: str) -> Any: ... def configure(self, cnf: Any = None) -> Any: ... - # TODO: config is an alias of configure, but adding that here creates - # conflict with the type of config in the subclasses. See #13149 + config = configure class CallWrapper: func: Incomplete