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
|
|
|
|
|
|
Inside a package hierarchy, use 2 dots, as the import statement doc says:
PEP-328 deals with absolute/relative imports. |
||||||
|
|
|
@gimel's answer is correct if you can guarantee the package hierarchy he mentions. If you can't -- if your real need is as you expressed it, exclusively tied to directories and without any necessary relationship to packaging -- then you need to work on |
||
|
|