Dieter Maurer wrote: > "Martin v. Löwis" <[EMAIL PROTECTED]> writes on Sun, 22 May 2005 21:24:41 > +0200: >>... >>>The application was Zope importing about 2.500 modules >>>from 2 zip files "zope.zip" and "python24.zip". >>>This resulted in about 12.500 opens -- about 4 times more >>>than would be expected -- about 10.000 of them failing opens.
I'll bet this means that the 'zope.zip', 'python24.zip' would drop you to "about 12500 - 10000 = 2500" failing opens. That should be an easy test: sys.path.insert(0, 'zope.zip') or whatever. If that works and you want to drop even more, make a copy of zope.zip, update it with python24.zip, and call the result python24.zip. --Scott David Daniels [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list