Strange problem when importing modules:
File structure:
pages/
test.py
spawn.py
From spawn.py, if I do
from pages import test
everything works as expected.
If I do
from pages import *
I get
NameError: name 'test' is not defined
I don't get ImportError. I have commented out everything but two lines of code. I have init.py in the 'pages' dir, not that is should matter since I'm able to import just not use. I have tried changing filenames. Have tried on different machines, both Debian 6.0 though. Python version 2.6.6
Any ideas?