The imp
module was deprecated in Python 3.4 in favor of the importlib module. From the documentation for the imp
module:
Deprecated since version 3.4: The imp
package is pending deprecation
in favor of importlib
.
So, you should be using the reload
function from there:
>>> import importlib
>>> importlib.reload
>>> importlib.reload(the_module)