[Python-checkins] python/dist/src/Lib/distutils msvccompiler.py, 1.64.2.2, 1.64.2.3

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Fri Mar 11 18:21:16 CET 2005


Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17973/Lib/distutils

Modified Files:
      Tag: release24-maint
	msvccompiler.py 
Log Message:
Bug #1160802:  Can't build Zope on Windows w/ 2.4.1c1.

MSVCCompiler.initialize():  set self.initialized to True, as suggested
by AMK.  Else we keep growing the PATH endlessly, with each new C
extension built, until putenv() complains.

This doesn't appear to be an issue on the HEAD (MSVCCompiler initializes
itself via __init__() on the HEAD).

Also added a "2.4.1c2" section to NEWS.  Not meant to imply that Anthony
will do a 2.4.1c2 release, just needed to a place to put the news about the
MSVCCompiler bugfix.


Index: msvccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/msvccompiler.py,v
retrieving revision 1.64.2.2
retrieving revision 1.64.2.3
diff -u -d -r1.64.2.2 -r1.64.2.3
--- msvccompiler.py	9 Mar 2005 11:45:49 -0000	1.64.2.2
+++ msvccompiler.py	11 Mar 2005 17:20:41 -0000	1.64.2.3
@@ -255,6 +255,8 @@
                 ]
         self.ldflags_static = [ '/nologo']
 
+        self.initialized = True
+
 
     # -- Worker methods ------------------------------------------------
 



More information about the Python-checkins mailing list