diff options
author | Ned Deily <nad@acm.org> | 2011-07-04 04:37:03 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-07-04 04:37:03 (GMT) |
commit | 9a7a4cc3a7e0e6dc259e5bc18ca0e1d88f418be6 (patch) | |
tree | 5fdd42fcf18d48939b32c61c8fa56750f02160b2 /Lib/lib-tk | |
parent | 9b6c60530b1f6c86f9c3e509a5ccebb2496f0c89 (diff) | |
download | cpython-9a7a4cc3a7e0e6dc259e5bc18ca0e1d88f418be6.zip cpython-9a7a4cc3a7e0e6dc259e5bc18ca0e1d88f418be6.tar.gz cpython-9a7a4cc3a7e0e6dc259e5bc18ca0e1d88f418be6.tar.bz2 |
Issue #10734: Temporarily disable test_ttk test_heading_callback on 2.7 as well.
Diffstat (limited to 'Lib/lib-tk')
-rw-r--r-- | Lib/lib-tk/test/test_ttk/test_widgets.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/lib-tk/test/test_ttk/test_widgets.py b/Lib/lib-tk/test/test_ttk/test_widgets.py index 2cad6bd..aca90cf 100644 --- a/Lib/lib-tk/test/test_ttk/test_widgets.py +++ b/Lib/lib-tk/test/test_ttk/test_widgets.py @@ -937,7 +937,8 @@ class TreeviewTest(unittest.TestCase): self.assertRaises(Tkinter.TclError, self.tv.heading, '#0', anchor=1) - + # XXX skipping for now; should be fixed to work with newer ttk + @unittest.skip("skipping pending resolution of Issue #10734") def test_heading_callback(self): def simulate_heading_click(x, y): support.simulate_mouse_click(self.tv, x, y) |