third_party.pylibs.pylint.src/test/input/func_w0233.py

20 lines
375 B
Python
Raw Normal View History

# pylint: disable-msg=R0903,W0212
2006-04-26 10:48:09 +00:00
"""test for call to __init__ from a non ancestor class
"""
__revision__ = '$Id: func_w0233.py,v 1.2 2004-09-29 08:35:13 syt Exp $'
class AAAA:
"""ancestor 1"""
def __init__(self):
print 'init', self
BBBB.__init__(self)
class BBBB:
"""ancestor 2"""
def __init__(self):
print 'init', self