mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Re-flow several long lines from #1578269.
This commit is contained in:
parent
c739569be0
commit
74e4561a3c
6 changed files with 41 additions and 22 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue