1

Resolved

Automatic method population fails if a keyword argument defaults to '\n'

description

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)

comments

Zooba wrote Mar 12 at 3:46 PM

Thanks. I'll get this fixed for beta.