document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import sys
  2. for key in sys.modules.keys():
  3.     if "myPackage" in key:
  4.         del sys.modules[key]
  5.         print "Deleting module {0}".format(key)
');