How do I introspect A\'s instance from within b.func() (i.e. A\'s instance\'s self):
A
b.func()
self
class A():
I agree with Benjamin - pass it to b.func() as an argument and don't introspect it!!!!
If your life really depends on it, then I think you can deduce the answer from this answer.