When overriding a class like:
class Alpha(object):
def __init__(self, a = '\n'):
#do something
When extending the
init method's functionality, the auto completion of the function will look like:
class Beta(Alpha):
def __init__(self, a = '):
return super(Beta, self).__init(a)