summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-07-09 15:58:59 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-07-09 15:58:59 (GMT)
commit74e4561a3cdf9d38caca4573b68e1c72fc489629 (patch)
tree55387806a4c157646ad6a39c37b8657ae3f82edc /Lib/test/test_os.py
parentc739569be09d4b271ae8a5d3d566254db6298c55 (diff)
downloadcpython-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.py3
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)