This file is indexed.

/usr/share/pyshared/guppy/gsl/Exceptions.py is in python-guppy 0.1.9-2ubuntu4.

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
#._cv_part guppy.gsl.Exceptions

class DebugError(Exception):
    # An error raised for debugging
    # when we want to look at the error at the place it really happened
    # rather than catch it, try to go on for more messages
    pass

class GSL_Error(Exception):
    pass

class TooManyErrors(GSL_Error):
    pass

class HadReportedError(GSL_Error):
    pass

class ReportedError(GSL_Error):
    pass

class UndefinedError(ReportedError):
    pass

class DuplicateError(ReportedError):
    pass

class CompositionError(GSL_Error):
    pass

class CoverageError(ReportedError):
    pass

class ConditionError(GSL_Error):
    pass