]> granicus.if.org Git - python/commitdiff
Merged revisions 67414 via svnmerge from
authorChristian Heimes <christian@cheimes.de>
Fri, 28 Nov 2008 11:03:48 +0000 (11:03 +0000)
committerChristian Heimes <christian@cheimes.de>
Fri, 28 Nov 2008 11:03:48 +0000 (11:03 +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 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 0e2c036c8ee22ae3b0f359784d831c451b609929..0ec79ff536f0121a973f2e6237127f07d79c87f9 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -52,6 +52,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.