Index: Lib/lib-tk/tkFont.py =================================================================== --- Lib/lib-tk/tkFont.py (revision 63916) +++ Lib/lib-tk/tkFont.py (working copy) @@ -96,7 +96,7 @@ 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)