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 jkleckner
Recipients amaury.forgeotdarc, jkleckner, scott.dial
Date 2008-07-23.23:15:49
SpamBayes Score 0.07267552
Marked as misclassified No
Message-id <1216854950.9.0.593770431713.issue2975@psf.upfronthosting.co.za>
In-reply-to
Content
Sorry, posted too quickly.

Actually, the problem was a little different.
There was an environment variable with '=' characters in it.

Here is a patch to deal with that:

--- msvc9compiler.py.orig	2008-07-23 16:13:25.248438400 -0700
+++ msvc9compiler.py	2008-07-23 16:13:54.059867200 -0700
@@ -252,7 +252,9 @@
         if '=' not in line:
             continue
         line = line.strip()
-        key, value = line.split('=')
+        i = line.index('=')
+        key   = line[0:i]
+        value = line[i:]
         key = key.lower()
         if key in interesting:
             if value.endswith(os.pathsep):
History
Date User Action Args
2008-07-23 23:15:51jklecknersetspambayes_score: 0.0726755 -> 0.07267552
recipients: + jkleckner, amaury.forgeotdarc, scott.dial
2008-07-23 23:15:50jklecknersetspambayes_score: 0.0726755 -> 0.0726755
messageid: <1216854950.9.0.593770431713.issue2975@psf.upfronthosting.co.za>
2008-07-23 23:15:50jklecknerlinkissue2975 messages
2008-07-23 23:15:49jklecknercreate