1
vote
1answer
125 views
How to reload a Python module that was imported in another file?
I am trying to learn how Python reloads modules, but have hit a roadblock.
Let's say I have:
dir1\file1.py:
from dir2.file2 import ClassOne
myObject = ClassOne( …
3
votes
5answers
224 views
In Python, how do you change an instantiated object after a reload?
Let's say you have an object that was instantiated from a class inside a module.
Now, you reload that module.
The next thing you'd like to do is make that reload affect that class.
…
