This file is indexed.

/usr/lib/python3/dist-packages/pyutilib/misc/redirect_io.py is in python3-pyutilib 5.3.5-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#  _________________________________________________________________________
#
#  PyUtilib: A Python utility library.
#  Copyright (c) 2008 Sandia Corporation.
#  This software is distributed under the BSD License.
#  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
#  the U.S. Government retains certain rights in this software.
#  _________________________________________________________________________

import sys

_old_stdout = []
_old_stderr = []
_local_file = []

try:
    unicode
except:
    basestring = str


def setup_redirect(output):
    """
    Redirect stdout and stderr to a specified output, which
    is either the string name for a file, or a file-like class.
    """
    global _old_stdout
    global _old_stderr
    global _local_file
    _old_stdout.append(sys.stdout)
    _old_stderr.append(sys.stderr)
    if isinstance(output, basestring):
        sys.stderr = _Redirecter(output)
        _local_file.append(True)
    else:
        sys.stderr = output
        _local_file.append(False)
    sys.stdout = sys.stderr

def reset_redirect():
    """ Reset redirection to use standard stdout and stderr """
    global _old_stdout
    global _old_stderr
    if len(_old_stdout) > 0:
        if _local_file.pop():
            sys.stdout.close()
        sys.stdout = _old_stdout.pop()
        sys.stderr = _old_stderr.pop()

#
# A class used to manage the redirection of IO.  The sys.stdout and
# sys.stderr values are set to an instance of this class.
#
class _Redirecter:

    def __init__(self, ofile):
        """ Constructor. """
        self.ofile = ofile
        self._out = open(ofile,"w")

    def write(self, s):
        """ Write an item. """
        self._out.write(s)

    def flush(self):
        """ Flush the output. """
        self._out.flush()

    def close(self):
        """ Close the stream. """
        self._out.close()