I'm trying to reload a module I have already imported in Python 3. I know that you only need to import once and executing the import
command again won't do anything.
Executing reload(foo)
is giving this error:
Traceback (most recent call last):
File "(stdin)", line 1, in (module)
...
NameError: name 'reload' is not defined
What does the error mean?