I've become aware of @staticmethod
- next question, are you supposed to use the class name to refer to these methods from within the class?
class C:
@staticmethod
def imstatic():
print("i'm static")
@staticmethod
def anotherstatic():
# Is this the proper python way?
C.imstatic()
@staticmethod
def brokenstatic():
# This doesn't work..
self.imstatic()