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 Goplat
Recipients Goplat, brett.cannon, ysj.ray
Date 2010-05-20.21:09:03
SpamBayes Score 9.996382e-05
Marked as misclassified No
Message-id <1274389746.18.0.806118669053.issue8745@psf.upfronthosting.co.za>
In-reply-to
Content
Zipping up the Lib directory from the python source (1735 files) as a test, it took on average 0.10 sec to read the zip before, 0.04 sec after.

(To test the time taken by zipimport isolated from other startup costs, instead of actually getting the zip in the import path, I just ran

import time, zipimport; start = time.clock(); 
zipimport.zipimporter("lib.zip"); print time.clock() - start)
History
Date User Action Args
2010-05-20 21:09:06Goplatsetrecipients: + Goplat, brett.cannon, ysj.ray
2010-05-20 21:09:06Goplatsetmessageid: <1274389746.18.0.806118669053.issue8745@psf.upfronthosting.co.za>
2010-05-20 21:09:04Goplatlinkissue8745 messages
2010-05-20 21:09:03Goplatcreate