Re-flow several long lines from #1578269.

This commit is contained in:
Brian Curtin 2010-07-09 15:58:59 +00:00
parent c739569be0
commit 74e4561a3c
6 changed files with 41 additions and 22 deletions

View file

@ -1034,7 +1034,8 @@ class Win32KillTests(unittest.TestCase):
def skipUnlessWindows6(test):
if hasattr(sys, 'getwindowsversion') and sys.getwindowsversion().major >= 6:
if (hasattr(sys, 'getwindowsversion')
and sys.getwindowsversion().major >= 6):
return test
return unittest.skip("Requires Windows Vista or later")(test)