1
vote
2answers
495 views
How to import a Python class that is in a directory above?
For example, I want to inherit from a class in a file that lies in a directory above the current one.
Is it possible to relatively import that file?
thanks!
…
1
vote
1answer
121 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
218 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.
…
