Re: [Python-Dev] Re: distutils fix for building Zope against Python 2.4.1c1

2005-03-12 Thread Martin v. Löwis
Tim Peters wrote:
Don't think it's needed on HEAD.  As the checkin comment said:
This doesn't appear to be an issue on the HEAD (MSVCCompiler initializes
itself via __init__() on the HEAD).
I verified by building Zope with unaltered HEAD too, and had no
problem with that.
Are you sure your HEAD is current? My copy of msvccompiler.py 1.67 reads
def __init__ (self, verbose=0, dry_run=0, force=0):
CCompiler.__init__ (self, verbose, dry_run, force)
self.__version = get_build_version()
if self.__version = 7:
self.__root = rSoftware\Microsoft\VisualStudio
self.__macros = MacroExpander(self.__version)
else:
self.__root = rSoftware\Microsoft\Devstudio
self.initialized = False
def initialize(self):
self.__paths = self.get_msvc_paths(path)
...
Regards,
Martin
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] Re: distutils fix for building Zope against Python 2.4.1c1

2005-03-12 Thread Tim Peters
[Tim]
 Don't think it's needed on HEAD.  As the checkin comment said:

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

 I verified by building Zope with unaltered HEAD too, and had no
 problem with that.

[Martin] 
 Are you sure your HEAD is current?

Of course I was sure.  I was also wrong about that, but I resent the
implication that I wasn't sure wink.

I'll port the fix sometime this weekend.  Thanks!
___
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com