summaryrefslogtreecommitdiffstats
path: root/Lib/tkinter
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-03-19 11:27:05 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-03-19 11:27:05 (GMT)
commite185341bfa177932b00a03a1d8b1d0e0e7795919 (patch)
treea9c9535025871b42277dd4d66a60a2902ca49f3f /Lib/tkinter
parent2f306c03d34441cb7b3a526d176ff39cbf484d63 (diff)
parentae4ef4d2ff2d49628516294837249493f43a5047 (diff)
downloadcpython-e185341bfa177932b00a03a1d8b1d0e0e7795919.zip
cpython-e185341bfa177932b00a03a1d8b1d0e0e7795919.tar.gz
cpython-e185341bfa177932b00a03a1d8b1d0e0e7795919.tar.bz2
Fix usage of the unittest.skip decorator.
Diffstat (limited to 'Lib/tkinter')
-rw-r--r--Lib/tkinter/test/test_ttk/test_widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tkinter/test/test_ttk/test_widgets.py b/Lib/tkinter/test/test_ttk/test_widgets.py
index c2231dc..45a686a 100644
--- a/Lib/tkinter/test/test_ttk/test_widgets.py
+++ b/Lib/tkinter/test/test_ttk/test_widgets.py
@@ -947,7 +947,7 @@ class TreeviewTest(unittest.TestCase):
anchor=1)
# XXX skipping for now; should be fixed to work with newer ttk
- @unittest.skip
+ @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)