What will happen if two modules import each other?
To generalize the problem, what about the cyclic imports in Python?
|
What will happen if two modules import each other? To generalize the problem, what about the cyclic imports in Python? |
|||||||||||||||||||
|
|
There was a really good discussion on this over at comp.lang.python last year. It answers your question pretty thoroughly.
|
|||||
|
|
If you do " The problem is when instead you do " |
|||
|
|
|
Cyclic imports terminate, but you need to be careful not to use the cyclically-imported modules during module initialization. Consider the following files: a.py:
b.py:
If you execute a.py, you'll get the following:
On the second import of b.py (in the second Edit:
If you try to access Append the following line to
Then, the output is:
This is because modules are executed on import and at the time |
|||||||
|
|
I got an example here that struck me! foo.py
bar.py
main.py
At the command line: $ python main.py
|
|||||||
|