summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_r0922.py
blob: 705ef3adbf8aef61386e953866de60d92c2e9f9c (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
# pylint: disable=too-few-public-methods
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