diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-26 06:46:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-26 06:46:57 (GMT) |
commit | 8122174af1a3c50671c48720ca3f18af9feda56b (patch) | |
tree | 97261989a60f5ca4cda3aff83289dcf922fce722 /Doc/whatsnew | |
parent | 523ccd135c340a9e532c8bdf355cb43f8e259904 (diff) | |
download | cpython-8122174af1a3c50671c48720ca3f18af9feda56b.zip cpython-8122174af1a3c50671c48720ca3f18af9feda56b.tar.gz cpython-8122174af1a3c50671c48720ca3f18af9feda56b.tar.bz2 |
Issue #22115: Added methods trace_add, trace_remove and trace_info in the
tkinter.Variable class. They replace old methods trace_variable, trace,
trace_vdelete and trace_vinfo that use obsolete Tcl commands and might
not work in future versions of Tcl.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index ea4dd8c..d3a588b 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -391,6 +391,19 @@ telnetlib Stéphane Wirtel in :issue:`25485`). +tkinter +------- + +Added methods :meth:`~tkinter.Variable.trace_add`, +:meth:`~tkinter.Variable.trace_remove` and :meth:`~tkinter.Variable.trace_info` +in the :class:`tkinter.Variable` class. They replace old methods +:meth:`~tkinter.Variable.trace_variable`, :meth:`~tkinter.Variable.trace`, +:meth:`~tkinter.Variable.trace_vdelete` and +:meth:`~tkinter.Variable.trace_vinfo` that use obsolete Tcl commands and might +not work in future versions of Tcl. +(Contributed by Serhiy Storchaka in :issue:`22115`). + + typing ------ |