mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
#1730136: Fix comparison between a tk Font object and an object of a different type.
This commit is contained in:
parent
19ec67acf6
commit
d61d077bf5
3 changed files with 24 additions and 1 deletions
|
@ -97,7 +97,7 @@ class Font:
|
|||
return self.name
|
||||
|
||||
def __eq__(self, other):
|
||||
return self.name == other.name and isinstance(other, Font)
|
||||
return isinstance(other, Font) and self.name == other.name
|
||||
|
||||
def __getitem__(self, key):
|
||||
return self.cget(key)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue