diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-07-09 15:58:59 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-07-09 15:58:59 (GMT) |
commit | 74e4561a3cdf9d38caca4573b68e1c72fc489629 (patch) | |
tree | 55387806a4c157646ad6a39c37b8657ae3f82edc /Lib/test/test_os.py | |
parent | c739569be09d4b271ae8a5d3d566254db6298c55 (diff) | |
download | cpython-74e4561a3cdf9d38caca4573b68e1c72fc489629.zip cpython-74e4561a3cdf9d38caca4573b68e1c72fc489629.tar.gz cpython-74e4561a3cdf9d38caca4573b68e1c72fc489629.tar.bz2 |
Re-flow several long lines from #1578269.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r-- | Lib/test/test_os.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 4693164..81d05ab 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -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) |