[New-bugs-announce] [issue42759] Take into acount a Tcl interpreter when compare variables and fonts

Serhiy Storchaka report at bugs.python.org
Sun Dec 27 15:16:59 EST 2020


New submission from Serhiy Storchaka <storchaka+cpython at gmail.com>:

Currently instances of tkinter.Variable and tkinter.font.Font are considered equal when they have the same name even if they belong to different Tcl interpreters. But Tcl interpreters are isolated, and variables and fonts in different interpreters refer to different things.

There is note in the docstring of tkinter.Variable.__eq__ about taking into account master. The following PR fixes this omission.

----------
components: Library (Lib), Tkinter
messages: 383860
nosy: serhiy.storchaka
priority: normal
severity: normal
status: open
title: Take into acount a Tcl interpreter when compare variables and fonts
type: behavior
versions: Python 3.10, Python 3.8, Python 3.9

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue42759>
_______________________________________


More information about the New-bugs-announce mailing list