Hello, Is there any way that I can find the hash value of a class from an instance? >>> class A: ... pass ... >>> a = A() >>> hash(A) 10782976 >>> hash(a) 12251904 >>> What I want is a function that returns the value of 'hash(A)': > a.getHashOfClass() 10782976 Is this possible? /Joakim