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
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
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/')
://
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