Hi, Is it possible to a single that contains two classes:
Myclass.py file contains:
Class one(object):
def needsomething(self):
Class two (object):
def dosomething(self):
I want Class one's methods to access Class two methods?
Class one(object):
def needsomething(self):
return dosomething()
Thanks
_______________________________________________
Tutor maillist - [email protected]
http://mail.python.org/mailman/listinfo/tutor
