Ahhh. Actually, I realized my problem was the fact that not everything
had been loaded yet. Circular loading can be a bit difficult I can
see... I guess I need to import the new module after x has been
declared? Ei, I need this.

Mod1.py
x=1
from mod2.py import *
=================
Mod2.py
from mod1.py import x

Will this work right? Thanks!

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

Reply via email to