[pypy-commit] pypy py3.5: fix

mattip pypy.commits at gmail.com
Wed Mar 21 16:40:11 EDT 2018


Author: Matti Picus <matti.picus at gmail.com>
Branch: py3.5
Changeset: r94058:b13c7b3ad6ee
Date: 2018-03-21 22:39 +0200
http://bitbucket.org/pypy/pypy/changeset/b13c7b3ad6ee/

Log:	fix

diff --git a/lib-python/3/distutils/msvc9compiler.py b/lib-python/3/distutils/msvc9compiler.py
--- a/lib-python/3/distutils/msvc9compiler.py
+++ b/lib-python/3/distutils/msvc9compiler.py
@@ -278,7 +278,7 @@
         stdout = stdout.decode("mbcs")
         log.debug('-'*30)
         log.debug(stderr.decode('mbcs'))
-        log.debug(stdout.decode('mbcs'))
+        log.debug(stdout)
         log.debug('-'*30)
         for line in stdout.split("\n"):
             line = Reg.convert_mbcs(line)


More information about the pypy-commit mailing list