diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-08-19 11:48:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 11:48:02 (GMT) |
commit | 79db9d9a0e8f51ad4ea5caae31d7ae4b29985271 (patch) | |
tree | 97ee5141fa898bb0a224045aa7c8cb425a902569 /Doc | |
parent | ca0c6c1f1ef79d10bc49b61d638d87cde265aa94 (diff) | |
download | cpython-79db9d9a0e8f51ad4ea5caae31d7ae4b29985271.zip cpython-79db9d9a0e8f51ad4ea5caae31d7ae4b29985271.tar.gz cpython-79db9d9a0e8f51ad4ea5caae31d7ae4b29985271.tar.bz2 |
gh-72684: Tkinter: provide interface for "tk busy" subcommands (GH-107684)
Add tkinter.Misc methods: tk_busy_hold(), tk_busy_configure(), tk_busy_cget(),
tk_busy_forget(), tk_busy_current(), and tk_busy_status().
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 85aa81b..47b868b 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -144,6 +144,15 @@ pathlib :meth:`~pathlib.Path.is_dir`. (Contributed by Barney Gale in :gh:`77609` and :gh:`105793`.) +tkinter +------- + +* Add :mod:`tkinter` widget methods: + :meth:`!tk_busy_hold`, :meth:`!tk_busy_configure`, + :meth:`!tk_busy_cget`, :meth:`!tk_busy_forget`, + :meth:`!tk_busy_current`, and :meth:`!tk_busy_status`. + (Contributed by Miguel, klappnase and Serhiy Storchaka in :gh:`72684`.) + traceback --------- |