[EMAIL PROTECTED]:
> Is there
> a way to avoid having to use the "from xxx import yyy" syntax from
> files in the same directory?

You can just use:
import xxx

and then:
class Two(xxx.One):
    ...

If you don't want to use the import line, you have to put the two
classes into the same module.

Bye,
bearophile

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to