First of all, my apologies if this question has already be asked elsewhere. I really searched for it, but didn't find anything.
The situation is the following:
In a folder mod, I have the files __init__.py and sub.py.
They contain the following data:
__init__.py:
print "mod"
sub.py:
import __init__
print "sub"
Now let's do the following:
>>> import mod
mod
>>> import mod.sub
mod
sub
But when doing import mod.sub, why is mod/__init__.py executed again? It had been imported already.
The same strange feature exists if we just call:
>>> import mod.sub
mod
mod
sub
Can I change the behaviour by changing the import __init__? This is the line that seems most likely wrong to me.
modcontains shared classes that are subclassed insub. – Turion Sep 21 '11 at 18:18