Re: Intra-Package References

2008-03-09 Thread Gabriel Genellina
En Sat, 08 Mar 2008 17:36:12 -0200, xkenneth <[EMAIL PROTECTED]> escribió: > Does your python module have to exist in the path in order for intra- > package references to work? No, but Python must be aware that the importing module is inside a package. So the script being ex

Intra-Package References

2008-03-08 Thread xkenneth
Does your python module have to exist in the path in order for intra- package references to work? Regards, Kenneth Miller -- http://mail.python.org/mailman/listinfo/python-list

Re: Intra-package References?? (again)

2008-01-29 Thread Ron Adam
d have the same setup as the packages howto here:http:// > docs.python.org/tut/node8.html#SECTION00840 > > But when I want to use Intra-package References, I need to put the > path to the packages explicit like this: > #sys.path.append('/path/to/pack/')

Intra-package References?? (again)

2008-01-29 Thread marcroy . olsen
:// docs.python.org/tut/node8.html#SECTION00840 But when I want to use Intra-package References, I need to put the path to the packages explicit like this: #sys.path.append('/path/to/pack/') Before I can make import like this: #from Sound.Effects import echo from within the karaok