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 pje
Recipients
Date 2004-09-23.06:21:44
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=56214

I've fixed bug #1029475, so reload() will now actually
invoke the PEP 302 loader mechanism.  

However, there's another bug in zipimport: the loader
implementation in zipimport.c always creates a new module,
even when reloading.  It needs to check sys.modules first,
and reuse the existing module if present.  I'm attempting to
fix that issue now, and once I'm done, someone more familiar
with zipimport's cache mechanism can do the rest.
History
Date User Action Args
2007-08-23 14:18:46adminlinkissue856103 messages
2007-08-23 14:18:46admincreate