diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-30 06:16:26 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-30 06:16:26 (GMT) |
commit | 78a70bd870e8f047f9e2aee37047266e658fab8f (patch) | |
tree | 22186fd5bfa39894e2323885a5d3b52721a039ab /Lib/platform.py | |
parent | 09cff641b8320eefad7fe141dc0af28afabd37c8 (diff) | |
download | cpython-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-x | Lib/platform.py | 2 |
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 |