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

20 lines
369 B
Python

# pylint: disable-msg=R0903
"""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