[Python-checkins] cpython (3.2): Fix usage of the unittest.skip decorator.

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


http://hg.python.org/cpython/rev/02e028b104d3
changeset:   82758:02e028b104d3
branch:      3.2
parent:      82755:ac023b1a23ea
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Tue Mar 19 13:25:20 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