]> granicus.if.org Git - python/commitdiff
Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception
authorChristian Heimes <christian@cheimes.de>
Fri, 28 Nov 2008 11:02:32 +0000 (11:02 +0000)
committerChristian Heimes <christian@cheimes.de>
Fri, 28 Nov 2008 11:02:32 +0000 (11:02 +0000)
Lib/distutils/msvc9compiler.py
Misc/NEWS

index 804f1751ceb262905cd7366c6eb764e5c7d11341..4f72e78096b209f77701c53313540ad2dfd607da 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 8d8b6c5cc04f856049c40da5d6838b87aa7a7fdb..6ccece5dcc80134ae62406a0db2730f3f693a995 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,9 @@ Core and Builtins
 Library
 -------
 
+- Issue #3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an
+  exception.
+
 - Issue #4363: The uuid.uuid1() and uuid.uuid4() functions now work even if
   the ctypes module is not present.