]> granicus.if.org Git - python/commitdiff
Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9
authorNed Deily <nad@acm.org>
Sun, 29 May 2011 22:28:54 +0000 (15:28 -0700)
committerNed Deily <nad@acm.org>
Sun, 29 May 2011 22:28:54 +0000 (15:28 -0700)
on Mac OS X.  (Patch by Ronald Oussoren)

Lib/tkinter/test/test_ttk/test_widgets.py
Misc/NEWS

index cd00a61f85d9ae96ae2f77f17fabaeb919e3bd66..f5c0f17dd0ff064ae971fda6c7d327b18eb2e8b6 100644 (file)
@@ -3,6 +3,7 @@ import tkinter
 import os
 from tkinter import ttk
 from test.support import requires, run_unittest
+import sys
 
 import tkinter.test.support as support
 from tkinter.test.test_ttk.test_functions import MockTclObj, MockStateSpec
@@ -561,11 +562,19 @@ class NotebookTest(unittest.TestCase):
 
         self.nb.pack()
         self.nb.wait_visibility()
-        self.assertEqual(self.nb.tab('@5,5'), self.nb.tab('current'))
+        if sys.platform == 'darwin':
+            tb_idx = "@20,5"
+        else:
+            tb_idx = "@5,5"
+        self.assertEqual(self.nb.tab(tb_idx), self.nb.tab('current'))
 
         for i in range(5, 100, 5):
-            if self.nb.tab('@%d, 5' % i, text=None) == 'a':
-                break
+            try:
+                if self.nb.tab('@%d, 5' % i, text=None) == 'a':
+                    break
+            except tkinter.TclError:
+                pass
+
         else:
             self.fail("Tab with text 'a' not found")
 
@@ -722,7 +731,10 @@ class NotebookTest(unittest.TestCase):
         self.nb.enable_traversal()
         self.nb.focus_force()
         support.simulate_mouse_click(self.nb, 5, 5)
-        self.nb.event_generate('<Alt-a>')
+        if sys.platform == 'darwin':
+            self.nb.event_generate('<Option-a>')
+        else:
+            self.nb.event_generate('<Alt-a>')
         self.assertEqual(self.nb.select(), str(self.child1))
 
 
index fde085b527d33458dea6750952bf1fe40319aafd..c9bcebba71a5ddc72444b4c15eda962e544f58f8 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -770,6 +770,9 @@ Extension Modules
 Tests
 -----
 
+- Issue #10736: Fix test_ttk test_widgets failures with Cocoa Tk 8.5.9
+  on Mac OS X.  (Patch by Ronald Oussoren)
+
 - Issue #12180: Fixed a few remaining errors in test_packaging when no
   threading.