Re: help - Module needs access to another module

2007-03-20 Thread Ben Finney
"abcd" <[EMAIL PROTECTED]> writes: > On Mar 20, 9:58 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > > http://docs.python.org/tut/node8.html > > got it, thanks. Now that you've got that one part of the tutorial, please do *the whole thing*. Start from the beginning, run each example and watch

Re: help - Module needs access to another module

2007-03-20 Thread Carsten Haese
On Tue, 2007-03-20 at 06:46 -0700, abcd wrote: > I have the following directory/file structure... > > c:\foo\utils.py > c:\foo\bar\ok.py > > In ok.py I want to do something like... > > import utils > utils.helpMeDoSomething() > > However, it seems that ok.py doesn't "know" about utils. Oth

Re: help - Module needs access to another module

2007-03-20 Thread abcd
On Mar 20, 9:58 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > After a bunch of questions of that kind, I suggest you take a step back, and > read this: > > http://docs.python.org/tut/node8.html got it, thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: help - Module needs access to another module

2007-03-20 Thread Diez B. Roggisch
abcd wrote: > I have the following directory/file structure... > > c:\foo\utils.py > c:\foo\bar\ok.py > > In ok.py I want to do something like... > > import utils > utils.helpMeDoSomething() > > However, it seems that ok.py doesn't "know" about utils. Other than > manually configuring sys