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

19 lines
451 B
Python

# pylint: disable-msg=R0903
"""crash test"""
__revision__ = 1
class Temelekefe:
"""gloubliboulga"""
def __init__(self):
"""nested class with function raise error"""
class Toto:
"""toto nested class"""
def __init__(self):
self.attr = 2
def toto_method(self):
"""toto nested class method"""
print self
print 'error ?', self, Toto