summaryrefslogtreecommitdiffstats
path: root/Lib/platform.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-08-30 06:16:26 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-08-30 06:16:26 (GMT)
commit78a70bd870e8f047f9e2aee37047266e658fab8f (patch)
tree22186fd5bfa39894e2323885a5d3b52721a039ab /Lib/platform.py
parent09cff641b8320eefad7fe141dc0af28afabd37c8 (diff)
downloadcpython-78a70bd870e8f047f9e2aee37047266e658fab8f.zip
cpython-78a70bd870e8f047f9e2aee37047266e658fab8f.tar.gz
cpython-78a70bd870e8f047f9e2aee37047266e658fab8f.tar.bz2
Try to get test_pep352 and maybe test_platform to work on a Windows buildbot
Diffstat (limited to 'Lib/platform.py')
-rwxr-xr-xLib/platform.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/platform.py b/Lib/platform.py
index 7b4258f..2e417d9 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -459,7 +459,7 @@ def _norm_version(version, build=''):
except ValueError:
strings = l
else:
- strings = map(str,ints)
+ strings = list(map(str,ints))
version = '.'.join(strings[:3])
return version