blob: c69b2b96647e0fadea358a79a8605423f9c21028 [file] [log] [blame]
# pylint: disable=R0903
"""Test case for the problem described below :
- A class extends 'object'
- This class defines its own __init__()
* pylint will therefore check that baseclasses' init()
are called
- If this class defines an 'object' attribute, then pylint
will use this new definition when trying to retrieve
object.__init__()
"""
__revision__ = None
class Statement(object):
""" ... """
def __init__(self):
pass
object = None