Thomas Coopman wrote: > When I run One.py from in the directory A, doesn't look python in it's > parent directory when it can't find the module? > And if that's not the case where and what should I add to the sys.path > variable?
No, Python won't look in parent directories for imports. Try running One.py from the parent dir of M by typing > python M/A/One.py or add the parent dir of M to sys.path. Kent _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor