diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-02-04 15:49:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-04 15:49:42 (GMT) |
commit | 7e42fddf608337e83b30401910d76fd75d5cf20a (patch) | |
tree | 0a7bc20dd9d60d77604b4e98e8695bf68e3a0b5c /Misc | |
parent | 3ddc5152550ea62280124c37d0b4339030ff7df4 (diff) | |
download | cpython-7e42fddf608337e83b30401910d76fd75d5cf20a.zip cpython-7e42fddf608337e83b30401910d76fd75d5cf20a.tar.gz cpython-7e42fddf608337e83b30401910d76fd75d5cf20a.tar.bz2 |
gh-113951: Tkinter: "tag_unbind(tag, sequence, funcid)" now only unbinds "funcid" (GH-113955)
Previously, "tag_unbind(tag, sequence, funcid)" methods of Text and
Canvas widgets destroyed the current binding for "sequence", leaving
"sequence" unbound, and deleted the "funcid" command.
Now they remove only "funcid" from the binding for "sequence", keeping
other commands, and delete the "funcid" command.
They leave "sequence" unbound only if "funcid" was the last bound command.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-01-11-20-47-49.gh-issue-113951.AzlqFK.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-01-11-20-47-49.gh-issue-113951.AzlqFK.rst b/Misc/NEWS.d/next/Library/2024-01-11-20-47-49.gh-issue-113951.AzlqFK.rst new file mode 100644 index 0000000..e683472 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-01-11-20-47-49.gh-issue-113951.AzlqFK.rst @@ -0,0 +1,7 @@ +Fix the behavior of ``tag_unbind()`` methods of :class:`tkinter.Text` and +:class:`tkinter.Canvas` classes with three arguments. Previously, +``widget.tag_unbind(tag, sequence, funcid)`` destroyed the current binding +for *sequence*, leaving *sequence* unbound, and deleted the *funcid* +command. Now it removes only *funcid* from the binding for *sequence*, +keeping other commands, and deletes the *funcid* command. It leaves +*sequence* unbound only if *funcid* was the last bound command. |