In Python, what is the standard signature of an object's method that have no argument ?
def method(None):
def method():
def method(self):
def method: