[Python-checkins] cpython (merge 3.3 -> default): Fix usage of the unittest.skip decorator.

serhiy.storchaka python-checkins at python.org
Tue Mar 19 12:31:05 CET 2013


http://hg.python.org/cpython/rev/57c6435ca03b
changeset:   82760:57c6435ca03b
parent:      82757:2a1b4ac63f3a
parent:      82759:eff77a3ee938
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Mar 19 13:27:24 2013 +0200
summary:
  Fix usage of the unittest.skip decorator.

files:
  Lib/tkinter/test/test_ttk/test_widgets.py |  2 +-
  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
--- a/Lib/tkinter/test/test_ttk/test_widgets.py
+++ b/Lib/tkinter/test/test_ttk/test_widgets.py
@@ -947,7 +947,7 @@
             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)

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list