summaryrefslogtreecommitdiff
path: root/test/input/func_missing_super_argument_py_30.py
blob: ec20857cac70b88533d1fdfd050fb93868173189 (plain)
1
2
3
4
5
6
7
8
9
"""Check missing super argument for Python 2"""

__revision__ = 0

class MyClass(object):
    """ New style class """
    def __init__(self):
        super().__init__()