Bruno Desthuilliers wrote:
> [EMAIL PROTECTED] a écrit :
> > I think I have an answer to my own question. In the
> > WindowsComponents/__init__.py file, I have the following, that feels
> > like a better answer for the problem. Is there a better answer than
> > this?
> >
> > import os, sys
> > s
[EMAIL PROTECTED] a écrit :
> I think I have an answer to my own question. In the
> WindowsComponents/__init__.py file, I have the following, that feels
> like a better answer for the problem. Is there a better answer than
> this?
>
> import os, sys
> sys.path.append(os.path.join(os.getcwd(), 'C
[EMAIL PROTECTED] wrote:
> I think I have an answer to my own question. In the
> WindowsComponents/__init__.py file, I have the following, that feels
> like a better answer for the problem. Is there a better answer than
> this?
>
> import os, sys
> sys.path.append(os.path.join(os.getcwd(), 'Comm
On Nov 16, [EMAIL PROTECTED] wrote:
> I have a package directory structure as follows
>
> root-
> |
> Common (contains __init__.py file)
> WindowsComponents (contains __init__.py file)
> ...
>
> I would like modules in the WindowsComponents directory to be able
> to import some mo
I think I have an answer to my own question. In the
WindowsComponents/__init__.py file, I have the following, that feels
like a better answer for the problem. Is there a better answer than
this?
import os, sys
sys.path.append(os.path.join(os.getcwd(), 'Common'))
--ERick
--
http://mail.python
I have a package directory structure as follows
root-
|
Common (contains __init__.py file)
WindowsComponents (contains __init__.py file)
...
I would like modules in the WindowsComponents directory to be able to
import some modules from the Common directory. In my first pass, I wa