Hi!

If I have two files .py such as

m.py
        from c import *
        ...
        x=c()
        ...
        os.any_method ...
        ...

c.py
        class c:
                def __init__(self, ...):
                        ...
                        os.any_method ...
                        ...
        ...

both using os module where should I put the "import os"? In both files?

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

Reply via email to