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 7b4258f..2e417d9 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -459,7 +459,7 @@
     except ValueError:
         strings = l
     else:
-        strings = map(str,ints)
+        strings = list(map(str,ints))
     version = '.'.join(strings[:3])
     return version