]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Merged revisions 73351 via svnmerge from
authorTarek Ziadé <ziade.tarek@gmail.com>
Thu, 11 Jun 2009 09:29:47 +0000 (09:29 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Thu, 11 Jun 2009 09:29:47 +0000 (09:29 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r73351 | tarek.ziade | 2009-06-11 11:25:41 +0200 (Thu, 11 Jun 2009) | 9 lines

  Merged revisions 73348 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r73348 | tarek.ziade | 2009-06-11 11:13:36 +0200 (Thu, 11 Jun 2009) | 1 line

    #6263 fixed syntax error in distutils.cygwinccompiler
  ........
................

Lib/distutils/cygwinccompiler.py
Misc/NEWS

index ea4c7971fd072e5a85059f52c91c3e4eef397ad8..0e40591654185ffec82e30ff1629efe2ce978a02 100644 (file)
@@ -74,7 +74,7 @@ def get_msvcr():
             # VS2008 / MSVC 9.0
             return ['msvcr90']
         else:
-            raise ValueError("Unknown MS Compiler version %i " % msc_Ver)
+            raise ValueError("Unknown MS Compiler version %s " % msc_ver)
 
 
 class CygwinCCompiler (UnixCCompiler):
index e2bb2f3ba50199c6722fe295286348fc47c576e6..2dd00e4d0b209a314fcc6e3d2ce59f16c3e6d83f 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -323,6 +323,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #6263: Fixed syntax error in distutils.cygwincompiler.
+
 - Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$`
   in Makefiles. This prevents compile errors when using syntax like:
   `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe.