Home | History | Annotate | Download | only in Lib

Lines Matching defs:unload

34 module, as well as interfaces to reload and unload a module.  It also

36 default __import__ and reload (and unload) functions.
378 def unload(self, module):
385 if not hasattr(__builtin__, 'unload'):
386 __builtin__.unload = None
387 self.save_unload = __builtin__.unload
390 __builtin__.unload = self.unload
395 __builtin__.unload = self.save_unload
396 if not __builtin__.unload:
397 del __builtin__.unload