From: Christian Heimes Date: Fri, 28 Nov 2008 11:02:32 +0000 (+0000) Subject: Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception X-Git-Tag: v2.7a1~2616 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa67471227f40d96e99d8ac8c874cf3f36ee071b;p=python Fixed issue ##3741: DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception --- diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py index 804f1751ce..4f72e78096 100644 --- a/Lib/distutils/msvc9compiler.py +++ b/Lib/distutils/msvc9compiler.py @@ -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 diff --git a/Misc/NEWS b/Misc/NEWS index 8d8b6c5cc0..6ccece5dcc 100644 --- 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.