I use static method in Python, like this:
class A(object):
@staticmethod
def sfun():
print "this is statice method"
class AA(A):
@staticmethod
def sfun():
print "this is statice method"
And I want to get type of class (A or AA) in sfun. How can I do it?