mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
* Add tkinter.Variable.trace_add() * Add tkinter.Variable.trace_remove() * Add tkinter.Variable.trace_info() https://docs.python.org/3.6/whatsnew/3.6.html#tkinter
This commit is contained in:
@@ -26,6 +26,10 @@ class Variable:
|
||||
def trace_vdelete(self, mode, cbname): ...
|
||||
def trace_vinfo(self): ...
|
||||
def __eq__(self, other): ...
|
||||
if sys.version_info >= (3, 6):
|
||||
def trace_add(self, mode, callback): ...
|
||||
def trace_remove(self, mode, cbname) -> None: ...
|
||||
def trace_info(self): ...
|
||||
|
||||
class StringVar(Variable):
|
||||
def __init__(self, master: Optional[Any] = ..., value: Optional[Any] = ..., name: Optional[Any] = ...): ...
|
||||
|
||||
Reference in New Issue
Block a user