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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, giampaolo.rodola, loewis
Date 2009-01-14.10:25:19
SpamBayes Score 0.09684632
Marked as misclassified No
Message-id <1231928725.7.0.546233134317.issue4931@psf.upfronthosting.co.za>
In-reply-to
Content
The problem has two causes:
- IOError is raised when no compiler is found. DistutilsPlatformError
should be used instead, this was fixed by #4702.

- the distutils.util.grok_environment_error function transforms a
IOError("Unable to find vcvarsall.bat") into "error: None".

This function should not be used IMO. Its docstring claims that it
"Handles Python 1.5.1 and 1.5.2 styles", but str() does a better job...

Patch attached.
History
Date User Action Args
2009-01-14 10:25:26amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, loewis, giampaolo.rodola
2009-01-14 10:25:25amaury.forgeotdarcsetmessageid: <1231928725.7.0.546233134317.issue4931@psf.upfronthosting.co.za>
2009-01-14 10:25:24amaury.forgeotdarclinkissue4931 messages
2009-01-14 10:25:24amaury.forgeotdarccreate