diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2021-01-01 17:39:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 17:39:36 (GMT) |
commit | e3a9adba329681b1b73b7223515e71e94fc35e12 (patch) | |
tree | 829c34abb85e9fed0b937a6f65c867455cd4380c /Misc | |
parent | 02639c3bc6a9bae9de635356c289cbae674aa61c (diff) | |
download | cpython-e3a9adba329681b1b73b7223515e71e94fc35e12.zip cpython-e3a9adba329681b1b73b7223515e71e94fc35e12.tar.gz cpython-e3a9adba329681b1b73b7223515e71e94fc35e12.tar.bz2 |
[3.8] bpo-42759: Fix equality comparison of Variable and Font in Tkinter (GH-23968) (GH-24026)
Objects which belong to different Tcl interpreters are now always
different, even if they have the same name.
(cherry picked from commit 1df56bc0597a051c13d53514e120e9b6764185f8)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-12-27-22-19-26.bpo-42759.lGi_03.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-12-27-22-19-26.bpo-42759.lGi_03.rst b/Misc/NEWS.d/next/Library/2020-12-27-22-19-26.bpo-42759.lGi_03.rst new file mode 100644 index 0000000..a5ec7d5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-12-27-22-19-26.bpo-42759.lGi_03.rst @@ -0,0 +1,3 @@ +Fixed equality comparison of :class:`tkinter.Variable` and +:class:`tkinter.font.Font`. Objects which belong to different Tcl +interpreters are now always different, even if they have the same name. |