This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cboos
Recipients TBBle, cboos
Date 2008-10-09.10:06:09
SpamBayes Score 0.0030410169
Marked as misclassified No
Message-id <1223546771.62.0.225665839243.issue3741@psf.upfronthosting.co.za>
In-reply-to
Content
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.py    Thu Oct 09 11:19:40 2008 +0200
+++ b/Lib/distutils/msvc9compiler.py    Thu Oct 09 12:01:27 2008 +0200
@@ -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
History
Date User Action Args
2008-10-09 10:06:11cboossetrecipients: + cboos, TBBle
2008-10-09 10:06:11cboossetmessageid: <1223546771.62.0.225665839243.issue3741@psf.upfronthosting.co.za>
2008-10-09 10:06:10cbooslinkissue3741 messages
2008-10-09 10:06:09cbooscreate