| I wanted to move the three modules into a namespace, say 'ns'. So I
| made a directory '/usr/lib/python2.3/site-packages/ns' and move the
| three py files there. Then I modified my main routine to import
| 'ns.X', 'ns.Y', and 'ns.Z' from simply 'X', 'Y', and 'Z'.

        I _think_ you want to say

        from ns import X
        from ns import Y

or even

  from ns import *
        
instead of

  import ns.X

hth
        b

-- 
TriLUG mailing list        : http://www.trilug.org/mailman/listinfo/trilug
TriLUG Organizational FAQ  : http://trilug.org/faq/
TriLUG Member Services FAQ : http://members.trilug.org/services_faq/
TriLUG PGP Keyring         : http://trilug.org/~chrish/trilug.asc

Reply via email to