mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
tkinter: fix version availability (#4207)
Co-authored-by: hauntsaninja <>
This commit is contained in:
@@ -125,7 +125,8 @@ class Misc:
|
||||
def tk_strictMotif(self, boolean: Optional[Any] = ...): ...
|
||||
def tk_bisque(self): ...
|
||||
def tk_setPalette(self, *args, **kw): ...
|
||||
def tk_menuBar(self, *args): ...
|
||||
if sys.version_info < (3, 6):
|
||||
def tk_menuBar(self, *args): ...
|
||||
def wait_variable(self, name: Union[str, Variable] = ...): ...
|
||||
waitvar: Any
|
||||
def wait_window(self, window: Optional[Any] = ...): ...
|
||||
@@ -537,7 +538,8 @@ class Listbox(Widget, XView, YView):
|
||||
class Menu(Widget):
|
||||
def __init__(self, master: Optional[Any] = ..., cnf=..., **kw): ...
|
||||
def tk_popup(self, x, y, entry: str = ...): ...
|
||||
def tk_bindForTraversal(self): ...
|
||||
if sys.version_info < (3, 6):
|
||||
def tk_bindForTraversal(self): ...
|
||||
def activate(self, index): ...
|
||||
def add(self, itemType, cnf=..., **kw): ...
|
||||
def add_cascade(self, cnf=..., **kw): ...
|
||||
|
||||
Reference in New Issue
Block a user