Discussion:
[Python-3000-checkins] r67416 - in python/branches/py3k: Lib/distutils/msvc9compiler.py Misc/NEWS
christian.heimes
2008-11-28 11:05:18 UTC
Permalink
Author: christian.heimes
Date: Fri Nov 28 12:05:17 2008
New Revision: 67416

Log:
Merged revisions 67414 via svnmerge from
svn+ssh://pythondev at 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
........


Modified:
python/branches/py3k/ (props changed)
python/branches/py3k/Lib/distutils/msvc9compiler.py
python/branches/py3k/Misc/NEWS

Modified: python/branches/py3k/Lib/distutils/msvc9compiler.py
==============================================================================
--- python/branches/py3k/Lib/distutils/msvc9compiler.py (original)
+++ python/branches/py3k/Lib/distutils/msvc9compiler.py Fri Nov 28 12:05:17 2008
@@ -316,7 +316,7 @@
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

Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Fri Nov 28 12:05:17 2008
@@ -24,6 +24,9 @@
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.

Loading...