third_party.pylibs.pylint.src/pylint/test/input/func_r0923.py
2015-02-14 18:13:20 +02:00

32 lines
553 B
Python

"""test max methods"""
from __future__ import absolute_import
__revision__ = None
from logilab.common.interface import Interface
class IAaaa(Interface):
"""yo"""
def meth1(self):
"""hehehe"""
class IBbbb(Interface):
"""yo"""
def meth1(self):
"""hehehe"""
class Concret(object):
"""implements IBbbb"""
__implements__ = IBbbb
def __init__(self):
pass
def meth1(self):
"""hehehe"""
return "et hop", self
def meth2(self):
"""hehehe"""
return "et hop", self