[pypy-commit] pypy default: add " 32 bit" (with space) to version name on win32

mattip pypy.commits at gmail.com
Sun Nov 10 21:47:55 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r98018:b3fa16549942
Date: 2019-11-10 21:46 -0500
http://bitbucket.org/pypy/pypy/changeset/b3fa16549942/

Log:	add " 32 bit" (with space) to version name on win32

diff --git a/rpython/rlib/compilerinfo.py b/rpython/rlib/compilerinfo.py
--- a/rpython/rlib/compilerinfo.py
+++ b/rpython/rlib/compilerinfo.py
@@ -18,8 +18,8 @@
 
 
 if platform.name == 'msvc':
-    # XXX hard-code the MSC version, I don't feel like computing it dynamically
-    _C_COMPILER_INFO = '"MSC v." Py_STR(_MSC_VER)'
+    # XXX hard-code the bit name
+    _C_COMPILER_INFO = '"MSC v." Py_STR(_MSC_VER) " 32 bit"'
 else:
     _C_COMPILER_INFO = '("GCC " __VERSION__)'
 


More information about the pypy-commit mailing list