Example:
class Class1:
def __init__(self):
self.x = Class2('Woo!')
class Class2:
def __init__(self, word):
print word
meow = Class1()
How do I derive the class name that created the self.x instance? In other words, if I was given the instance self.x, how do I get the name 'Class1'? Using self.x.__class__.__name__ will obviously only give you the Class2 name. Is this even possible? Thanks.

xis a local variable, how are you "getting" it? – SilentGhost Oct 20 at 10:14xis a local variable that only exists temporarily whenmeowis created. Andxis an instance ofClass2. What are you asking? Please fix your question so that it makes sense. – S.Lott Oct 20 at 10:21