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 ncoghlan
Recipients brett.cannon, eric.araujo, eric.smith, ncoghlan
Date 2012-05-05.06:51:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336200662.56.0.74624572612.issue14678@psf.upfronthosting.co.za>
In-reply-to
Content
Moving zipimporter to Python code is harder than it sounds: we don't want to break the ability to ship the standard library itself inside a zipfile.

If you try to move zipimporter to pure Python, you could easily end up with a *very* ugly bootstrapping problem, on par with that already encountered when hacking on importlib._bootstrap.

In fact, the path of least resistance here might actually be to implement zipimporter directly *in* importlib._bootstrap.
History
Date User Action Args
2012-05-05 06:51:02ncoghlansetrecipients: + ncoghlan, brett.cannon, eric.smith, eric.araujo
2012-05-05 06:51:02ncoghlansetmessageid: <1336200662.56.0.74624572612.issue14678@psf.upfronthosting.co.za>
2012-05-05 06:51:01ncoghlanlinkissue14678 messages
2012-05-05 06:51:01ncoghlancreate