I\'m very new to Python, I figure this question should be easy to answer.
My problem simplified is this...
I have 2 classes in a File class A and class B. Class
class A: def __init__(self): print "In A" class B: def __init__(self): a = A() print "In B" b = B()
I think you want something like that.