]> granicus.if.org Git - python/commitdiff
Merged revisions 67414 via svnmerge from
authorChristian Heimes <christian@cheimes.de>
Fri, 28 Nov 2008 11:05:17 +0000 (11:05 +0000)
committerChristian Heimes <christian@cheimes.de>
Fri, 28 Nov 2008 11:05:17 +0000 (11:05 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67414 | christian.heimes | 2008-11-28 12:02:32 +0100 (Fri, 28 Nov 2008) | 1 line

  Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception
........

Lib/distutils/msvc9compiler.py
Misc/NEWS

index 465013dc331019f012111c0da0a43a71e39f2f0f..eced0524b80ccb53cb0a98827e70e62734fec354 100644 (file)
@@ -316,7 +316,7 @@ class MSVCCompiler(CCompiler) :
         self.__version = VERSION
         self.__root = r"Software\Microsoft\VisualStudio"
         # self.__macros = MACROS
-        self.__path = []
+        self.__paths = []
         # target platform (.plat_name is consistent with 'bdist')
         self.plat_name = None
         self.__arch = None # deprecated name
index 0ff809cbc8d61b29e8dfdbe0c68bc59a049815d1..6c1a0f1cd5472dcc994e22ae9577fbfd88522627 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an
+  exception.
+
 - Issue #4433: Fixed an access violation when garbage collecting
   _ctypes.COMError instances.