third_party.pylibs.pylint.src/test/input/func_w0233.py
Sylvain Thénault c5406a76a6 w0233 tests
2006-11-23 15:38:15 +01:00

29 lines
735 B
Python

# pylint: disable-msg=R0903,W0212,W0403,W0406
"""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
BBBBMixin.__init__(self)
class BBBBMixin:
"""ancestor 2"""
def __init__(self):
print 'init', self
import nonexistant
import func_w0233
class CCC(BBBBMixin, func_w0233.AAAA, func_w0233.BBBB, nonexistant.AClass):
"""mix different things, some inferable some not"""
def __init__(self):
BBBBMixin.__init__(self)
func_w0233.AAAA.__init__(self)
func_w0233.BBBB.__init__(self)
nonexistant.AClass.__init__(self)