Remove an imported python module

Question:

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
Asked By: Merlin

||

Answers:

Unloading a module from Python is not supported.

Answered By: David Heffernan
Categories: questions Tags:
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.