unloading a module created with imp.new_module

Patrick Stinson patrickkidd at gmail.com
Sun Nov 23 01:49:32 EST 2014


If I create a module with imp.new_module(name), how can I unload it so that all the references contained in it are set to zero and the module is deleted? deleting the reference that is returned doesn’t seem to do the job, and it’s not in sys.modules, so where is the dangling reference?

Thanks!




More information about the Python-list mailing list