Forum Archive

[BUG??] module isn't save

jamespython

I'm new to Pythonista.

After I modify a module, when I import it again in prompt, the module is not updated. Seems like the module is not saved.

i'm not sure it's a bug, or just i didn't save the module properly.

omz

Python doesn't automatically reload modules that you change on disk. Try the built-in reload function (e.g. type reload(mymodule) in the console).