summaryrefslogtreecommitdiff
path: root/test/input/func_noerror_new_style_class_py_30.py
blob: 112119648cbd5ffcc8f5dc9969db6db4c677d41f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
"""check builtin data descriptors such as mode and name attributes
on a file are correctly handled

bug notified by Pierre Rouleau on 2005-04-24
"""

__revision__ = None

class File(file):  # pylint: disable=file-builtin
    """ Testing new-style class inheritance from file"""

    #
    def __init__(self, name, mode="r", buffering=-1, verbose=False):
        """Constructor"""

        self.was_modified = False
        self.verbose = verbose
        super(File, self).__init__(name, mode, buffering)
        if self.verbose:
            print "File %s is opened.  The mode is: %s" % (self.name,
                                                           self.mode)

    #
    def write(self, a_string):
        """ Write a string to the file."""

        super(File, self).write(a_string)
        self.was_modified = True

    #
    def writelines(self, sequence):
        """ Write a sequence of strings to the file. """

        super(File, self).writelines(sequence)
        self.was_modified = True

    #
    def close(self):
        """Close the file."""

        if self.verbose:
            print "Closing file %s" % self.name

        super(File, self).close()
        self.was_modified = False