summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-02 23:22:56 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-02 23:22:56 (GMT)
commitd8976f12d4e20ebd6f57e11cbb775a71e35daedd (patch)
treefdaaa19827bfc798680c9f3e41b3c9baafb51d9e /Misc
parentebad7f0d47000a28e885d1808995537aa1e42727 (diff)
downloadcpython-d8976f12d4e20ebd6f57e11cbb775a71e35daedd.zip
cpython-d8976f12d4e20ebd6f57e11cbb775a71e35daedd.tar.gz
cpython-d8976f12d4e20ebd6f57e11cbb775a71e35daedd.tar.bz2
Merged revisions 66171 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r66171 | amaury.forgeotdarc | 2008-09-03 01:19:56 +0200 (mer., 03 sept. 2008) | 9 lines Issue 2975: when compiling multiple extension modules with visual studio 2008 from the same python instance, some environment variables (LIB, INCLUDE) would grow without limit. Tested with these statements: distutils.ccompiler.new_compiler().initialize() print os.environ['LIB'] But I don't know how to turn them into reliable unit tests. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d1be39c..355633d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,10 @@ Library
Extension Modules
-----------------
+- Issue #2975: When compiling several extension modules with Visual Studio 2008
+ from the same python interpreter, some environment variables would grow
+ without limit.
+
- Issue #3643: Added a few more checks to _testcapi to prevent segfaults by
exploitation of poor argument checking.