]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix test_tk under OS X with Tk 8.4. Patch by Ned Deily.
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 5 Oct 2010 11:24:49 +0000 (11:24 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 5 Oct 2010 11:24:49 +0000 (11:24 +0000)
This should fix some buildbot failures.

Lib/tkinter/test/test_tkinter/test_font.py

index 7bd9900fca0baf23561fdd1f49f18af5f12a2b22..dfd630b4de4f3bb57f497ecd26336597d3475e3f 100644 (file)
@@ -15,8 +15,13 @@ class FontTest(unittest.TestCase):
         support.root_withdraw()
 
     def test_font_eq(self):
-        font1 = font.nametofont("TkDefaultFont")
-        font2 = font.nametofont("TkDefaultFont")
+        fontname = "TkDefaultFont"
+        try:
+            f = font.Font(name=fontname, exists=True)
+        except tkinter._tkinter.TclError:
+            f = font.Font(name=fontname, exists=False)
+        font1 = font.nametofont(fontname)
+        font2 = font.nametofont(fontname)
         self.assertIsNot(font1, font2)
         self.assertEqual(font1, font2)
         self.assertNotEqual(font1, font1.copy())