summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_noerror_overriden_method_varargs.py
blob: afe30863fadb51dc45e8bab9896104c1d730ae3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# pylint: disable=R0201,R0903
"""docstring"""

__revision__ = 1

class SuperClass(object):
    """docstring"""
    def impl(self, arg1, arg2):
        """docstring"""
        return arg1 + arg2

class MyClass(SuperClass):
    """docstring"""
    def impl(self, *args, **kwargs):
        """docstring"""
        # ...do stuff here...
        super(MyClass, self).impl(*args, **kwargs)

# ...do stuff here...