Possible Duplicate:
Unload a module in Python
After importing Numpy, lets say I want to delete/remove numpy import reference
import sys
import numpy as np doMe()np.something()#unimport np
#remove numpy from memory
Possible Duplicate:
Unload a module in Python
After importing Numpy, lets say I want to delete/remove numpy import reference
import sys
import numpy as np doMe()np.something()#unimport np
#remove numpy from memory
Unloading a module from Python is not supported.