I have two static methods in the same class
class A:
@staticmethod
def methodA():
print 'methodA'
@staticmethod
def methodB():
print 'methodB'
How could I call the methodA inside the methodB? self seems to be unavailable in the static method.