[pypy-svn] r74355 - pypy/trunk/lib-python/modified-2.5.2/distutils

afa at codespeak.net afa at codespeak.net
Tue May 4 00:37:13 CEST 2010


Author: afa
Date: Tue May  4 00:37:12 2010
New Revision: 74355

Modified:
   pypy/trunk/lib-python/modified-2.5.2/distutils/msvccompiler.py
Log:
Try to fix the windows buildbot, by returning the version of the compiler
installed there.
Obviously this function should return the version used to compile the current
executable, but pypy does not gives this information yet (in sys.version).


Modified: pypy/trunk/lib-python/modified-2.5.2/distutils/msvccompiler.py
==============================================================================
--- pypy/trunk/lib-python/modified-2.5.2/distutils/msvccompiler.py	(original)
+++ pypy/trunk/lib-python/modified-2.5.2/distutils/msvccompiler.py	Tue May  4 00:37:12 2010
@@ -165,7 +165,7 @@
     For Python 2.3 and up, the version number is included in
     sys.version.  For earlier versions, assume the compiler is MSVC 6.
     """
-    return 8.0
+    return 9.0
 
 def normalize_and_reduce_paths(paths):
     """Return a list of normalized paths with duplicates removed.



More information about the Pypy-commit mailing list