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-05-29.21:43:14
SpamBayes Score 0.01970173
Marked as misclassified No
Message-id <1212097397.15.0.46521959482.issue2975@psf.upfronthosting.co.za>
In-reply-to
Content
In this file:
 http://svn.python.org/view/python/trunk/Lib/distutils/msvc9compiler.py?rev=62636&view=auto

Notice the line containing:
 os.environ['include'] = vc_env['include']

This causes the process environment variables to acquire the value
returned by vcvars.bat.

Since vcvars.bat appends it's values to the environment variable, it
grows each time called.

Note that the submitted patch does make this problem go away.  A better
patch could combine the two functions or and treat them consistently.
History
Date User Action Args
2008-05-29 21:43:18jklecknersetspambayes_score: 0.0197017 -> 0.01970173
recipients: + jkleckner, amaury.forgeotdarc, scott.dial
2008-05-29 21:43:17jklecknersetspambayes_score: 0.0197017 -> 0.0197017
messageid: <1212097397.15.0.46521959482.issue2975@psf.upfronthosting.co.za>
2008-05-29 21:43:16jklecknerlinkissue2975 messages
2008-05-29 21:43:15jklecknercreate