Author: mattip <[email protected]>
Branch: 
Changeset: r75814:6ac9dab8648a
Date: 2015-02-10 22:32 +0200
http://bitbucket.org/pypy/pypy/changeset/6ac9dab8648a/

Log:    do not modify caller's locals

diff --git a/rpython/translator/platform/windows.py 
b/rpython/translator/platform/windows.py
--- a/rpython/translator/platform/windows.py
+++ b/rpython/translator/platform/windows.py
@@ -196,7 +196,7 @@
         # So please be careful with the order of parameters! ;-)
         pdb_dir = oname.dirname
         if pdb_dir:
-                compile_args += ['/Fd%s\\' % (pdb_dir,)]
+                compile_args = compile_args + ['/Fd%s\\' % (pdb_dir,)]
         args = ['/nologo', '/c'] + compile_args + ['/Fo%s' % (oname,), 
str(cfile)]
         self._execute_c_compiler(cc, args, oname)
         return oname
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to