Python: ¿Puedo acceder al objeto que me llama?

Si tengo esto:

class A:
    def callFunction(self, obj):
        obj.otherFunction()

class B:
    def callFunction(self, obj):
        obj.otherFunction()

class C:
    def otherFunction(self):
        # here I wan't to have acces to the instance of A or B who call me.

...

# in main or other object (not matter where)
a = A()
b = B()
c = C()
a.callFunction(c) # How 'c' know that is called by an instance of A...
b.callFunction(c) # ... or B

A pesar del diseño u otros problemas, esta es solo una cuestión de mente inquisitiva.

Nota: Esto debe hacerse sin cambiar otherFunction firma