summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_class_attributes.py
blob: bb4ec6d6a305636f5cf783598a44302b58a7e33f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""Test that valide class attribut doesn't trigger errors"""
__revision__ = 'sponge bob'

class Clazz(object):
    "dummy class"

    def __init__(self):
        self.topic = 5
        self._data = 45

    def change_type(self, new_class):
        """Change type"""
        self.__class__ = new_class

    def do_nothing(self):
        "I do nothing useful"
        return self.topic + 56