I though it was easy, but I just can't do it. I read in the doc that this should work :
File a/__init__.py
#nothing here
File a/b.py
var = "hello world"
File a/c.py
import b
print(b.var)
From .
:
>>> import a.c
ImportError: No module named 'b'
But it does not… What have I forgotten ? Is it because I use Python 3 ?