summaryrefslogtreecommitdiff
path: root/test/input/func_r0922.py
blob: d4abafeb9d74cbf9515f1dd38900583277814ae3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""test max methods"""
__revision__ = None

class Aaaa(object):
    """yo"""
    def __init__(self):
        pass

    def meth1(self):
        """hehehe"""
        raise NotImplementedError

    def meth2(self):
        """hehehe"""
        return 'Yo', self

class Bbbb(Aaaa):
    """yeah"""
    def meth1(self):
        """hehehe bis"""
        return "yeah", self