[Python-3000-checkins] r57707 - python/branches/py3k/Lib/platform.py

neal.norwitz python-3000-checkins at python.org
Thu Aug 30 08:16:26 CEST 2007


Author: neal.norwitz
Date: Thu Aug 30 08:16:26 2007
New Revision: 57707

Modified:
   python/branches/py3k/Lib/platform.py
Log:
Try to get test_pep352 and maybe test_platform to work on a Windows buildbot

Modified: python/branches/py3k/Lib/platform.py
==============================================================================
--- python/branches/py3k/Lib/platform.py	(original)
+++ python/branches/py3k/Lib/platform.py	Thu Aug 30 08:16:26 2007
@@ -459,7 +459,7 @@
     except ValueError:
         strings = l
     else:
-        strings = map(str,ints)
+        strings = list(map(str,ints))
     version = '.'.join(strings[:3])
     return version
 


More information about the Python-3000-checkins mailing list