summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-11-28 11:03:48 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-11-28 11:03:48 (GMT)
commit268be91d0137febefd7d1db47f9ccab078b82dac (patch)
treef36f3e096bb09c0118cae1850a9b652f4dac150b
parent805e6bc5e438907ae065391827a3780fa6d9bfff (diff)
downloadcpython-268be91d0137febefd7d1db47f9ccab078b82dac.zip
cpython-268be91d0137febefd7d1db47f9ccab078b82dac.tar.gz
cpython-268be91d0137febefd7d1db47f9ccab078b82dac.tar.bz2
Merged revisions 67414 via svnmerge from
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 ........
-rw-r--r--Lib/distutils/msvc9compiler.py2
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 1 deletions
diff --git a/Lib/distutils/msvc9compiler.py b/Lib/distutils/msvc9compiler.py
index 804f175..4f72e78 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 0e2c036..0ec79ff 100644
--- 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.