From: Neal Norwitz Date: Thu, 30 Aug 2007 06:16:26 +0000 (+0000) Subject: Try to get test_pep352 and maybe test_platform to work on a Windows buildbot X-Git-Tag: v3.0a1~96 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78a70bd870e8f047f9e2aee37047266e658fab8f;p=thirdparty%2FPython%2Fcpython.git Try to get test_pep352 and maybe test_platform to work on a Windows buildbot --- diff --git a/Lib/platform.py b/Lib/platform.py index 7b4258ffed62..2e417d9f0cb6 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