summaryrefslogtreecommitdiffstats
path: root/Lib/lib-tk/tkFont.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-07-24 14:48:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-07-24 14:48:28 (GMT)
commit186f66540dfcce1abec59d87d24e944c7987a53c (patch)
treeb72fe55efff6557d6ff27dcb8aac2e568f9c7f39 /Lib/lib-tk/tkFont.py
parent63a474788a3f53f8edb62cf895aeb90508435c1d (diff)
downloadcpython-186f66540dfcce1abec59d87d24e944c7987a53c.zip
cpython-186f66540dfcce1abec59d87d24e944c7987a53c.tar.gz
cpython-186f66540dfcce1abec59d87d24e944c7987a53c.tar.bz2
Issue #1730136: Fix comparison between a tk Font object and an object of a
different type.
Diffstat (limited to 'Lib/lib-tk/tkFont.py')
-rw-r--r--Lib/lib-tk/tkFont.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib-tk/tkFont.py b/Lib/lib-tk/tkFont.py
index 61c2f86..dfdee42 100644
--- a/Lib/lib-tk/tkFont.py
+++ b/Lib/lib-tk/tkFont.py
@@ -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)