[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-11-28 Thread Christian Heimes
Christian Heimes [EMAIL PROTECTED] added the comment: Fixed in r67414, r67415, r67416 (trunk, 2.6, 3.0). -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3741

[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-11-21 Thread Barry A. Warsaw
Changes by Barry A. Warsaw [EMAIL PROTECTED]: ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3741 ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-11-09 Thread Bryon Roche
Bryon Roche [EMAIL PROTECTED] added the comment: This patch works in the build system I'm using as well. Can we get this in py2.6.epsilon? -- nosy: +broche type: - behavior ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3741

[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-11-09 Thread Christian Heimes
Christian Heimes [EMAIL PROTECTED] added the comment: I'll take it from here. -- assignee: - christian.heimes components: +Windows nosy: +christian.heimes priority: - deferred blocker stage: - patch review type: behavior - compile error versions: +Python 2.7, Python 3.0

[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-10-09 Thread Christian Boos
Christian Boos [EMAIL PROTECTED] added the comment: Hit the same issue, which is actually only a typo, as self.__path is used nowhere. diff -r 4d10dcbd5f63 Lib/distutils/msvc9compiler.py --- a/Lib/distutils/msvc9compiler.pyThu Oct 09 11:19:40 2008 +0200 +++ b/Lib/distutils/msvc9compiler.py

[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-08-31 Thread Paul TBBle Hampson
New submission from Paul TBBle Hampson [EMAIL PROTECTED]: Basically, if DISTUTILS_USE_SDK is set in the environment and an extension is attempted to be built from within the Windows SDK shell (ie. MSSdk is set in the environment as well), msvc9compiler.py will raise an exception due to a

[issue3741] DISTUTILS_USE_SDK set causes msvc9compiler.py to raise an exception

2008-08-31 Thread Paul TBBle Hampson
Paul TBBle Hampson [EMAIL PROTECTED] added the comment: The line my patch adds was present originally, and lost when msvccompiler.py was duplicated into msvc9compiler.py in revision 59290. http://svn.python.org/view?rev=59290view=rev ___ Python tracker