[pypy-svn] pypy default: Stop displaying the MSVC compiler version, it messes with app_main.py output.

amauryfa commits-noreply at bitbucket.org
Mon Mar 7 15:26:57 CET 2011


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: 
Changeset: r42460:f75f6e15ce49
Date: 2011-03-07 15:24 +0100
http://bitbucket.org/pypy/pypy/changeset/f75f6e15ce49/

Log:	Stop displaying the MSVC compiler version, it messes with
	app_main.py output.

diff --git a/pypy/translator/platform/windows.py b/pypy/translator/platform/windows.py
--- a/pypy/translator/platform/windows.py
+++ b/pypy/translator/platform/windows.py
@@ -37,7 +37,7 @@
         key, value = line.split('=', 1)
         if key.upper() in ['PATH', 'INCLUDE', 'LIB']:
             env[key.upper()] = value
-    log.msg("Updated environment with %s" % (vcvars,))
+    ## log.msg("Updated environment with %s" % (vcvars,))
     return env
 
 def find_msvc_env():


More information about the Pypy-commit mailing list