次のように、Pythonで静的メソッドを使用します。
class A(object):
@staticmethod
def sfun():
print "this is statice method"
class AA(A):
@staticmethod
def sfun():
print "this is statice method"
そして、sfun でクラスの型 (A または AA) を取得したいと考えています。どうすればいいですか?