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