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
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to