This file is indexed.

/usr/lib/python2.7/dist-packages/PySPH-1.0a4.dev0-py2.7-linux-x86_64.egg/pysph/base/capture_stream.py is in python-pysph 0~20160514.git91867dc-4build1.

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
72
73
74
75
76
77
78
79
80
81
82
83
84
import os
import sys
from tempfile import mktemp


class CaptureStream(object):
    """A context manager which captures any errors on a given stream (like
    sys.stderr).  The stream is captured and the outputs can be used.

    We treat sys.stderr and stdout specially as very often these are
    overridden by nose or IPython.  We always wrap the underlying file
    descriptors in this case as this is the intent of this context manager.

    This is somewhat based on this question:
        http://stackoverflow.com/questions/7018879/disabling-output-when-compiling-with-distutils

    Examples
    --------

    See the tests in tests/test_capture_stream.py for example usage.
    """

    def __init__(self, stream=sys.stderr):
        self.stream = stream
        if stream is sys.stderr:
            self.fileno = 2
        elif stream is sys.stdout:
            self.fileno = 1
        else:
            self.fileno = stream.fileno()
        self.orig_stream = None
        self.tmp_stream = None
        self.tmp_path = ''
        self._cached_output = None

    def __enter__(self):
        self.orig_stream = os.dup(self.fileno)
        self.tmp_path = mktemp()
        self.tmp_stream = open(self.tmp_path, 'w+')
        os.dup2(self.tmp_stream.fileno(), self.fileno)
        return self

    def __exit__(self, type, value, tb):
        if self.orig_stream is not None:
            os.dup2(self.orig_stream, self.fileno)
        if self.tmp_stream is not None:
            self._cache_output()
            self.tmp_stream.close()
            os.remove(self.tmp_path)

    def _cache_output(self):
        if self._cached_output is not None:
            return
        tmp_stream = self.tmp_stream
        result = ''
        if tmp_stream is not None:
            tmp_stream.flush()
            tmp_stream.seek(0)
            result = tmp_stream.read()
        self._cached_output = result

    def get_output(self):
        """Return the captured output.
        """
        if self._cached_output is None:
            self._cache_output()
        return self._cached_output

class CaptureMultipleStreams(object):
    """This lets one capture multiple streams together.
    """
    def __init__(self, streams=None):
        streams = (sys.stdout, sys.stderr) if streams is None else streams
        self.streams = streams
        self.captures = [CaptureStream(x) for x in streams]
    def __enter__(self):
        for capture in self.captures:
            capture.__enter__()
        return self
    def __exit__(self, type, value, tb):
        for capture in self.captures:
            capture.__exit__(type, value, tb)
    def get_output(self):
        return tuple(x.get_output() for x in self.captures)