third_party.pylibs.pylint.src/test/input/func_r0923.py
root 4becf6f9e5 forget the past.
forget the past.
2006-04-26 10:48:09 +00:00

33 lines
536 B
Python

"""test max methods"""
__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:
"""implements IBbbb"""
__implements__ = IBbbb
def __init__(self):
pass
def meth1(self):
"""hehehe"""
return "et hop", self
def meth2(self):
"""hehehe"""
return "et hop", self