summaryrefslogtreecommitdiffstats
path: root/Lib/test/support.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-08-20 22:39:18 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-08-20 22:39:18 (GMT)
commite67474725b5b13b48ba0007e89314214a6bdca0b (patch)
tree3279b32d93e5c8a8e56e243b3377c5be0e784a98 /Lib/test/support.py
parenta9931888edcac8bbaaee813fd8b9cfa02dcb1f4f (diff)
downloadcpython-e67474725b5b13b48ba0007e89314214a6bdca0b.zip
cpython-e67474725b5b13b48ba0007e89314214a6bdca0b.tar.gz
cpython-e67474725b5b13b48ba0007e89314214a6bdca0b.tar.bz2
Issue #12326: refactor usage of sys.platform
* Use str.startswith(tuple): I didn't know this Python feature, Python rocks! * Replace sometimes sys.platform.startswith('linux') with sys.platform == 'linux' * sys.platform doesn't contain the major version on Cygwin on Mac OS X (it's just 'cygwin' and 'darwin')
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r--Lib/test/support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 64c1b4e..b3989e5 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -311,7 +311,7 @@ def requires_linux_version(*min_version):
def decorator(func):
@functools.wraps(func)
def wrapper(*args, **kw):
- if sys.platform.startswith('linux'):
+ if sys.platform == 'linux':
version_txt = platform.release().split('-', 1)[0]
try:
version = tuple(map(int, version_txt.split('.')))