This file is indexed.

/usr/lib/python2.7/dist-packages/pyqi/core/exception.py is in pyqi 0.3.2+dfsg-2.

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
#!/usr/bin/env python

#-----------------------------------------------------------------------------
# Copyright (c) 2013, The BiPy Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------

__credits__ = ["Greg Caporaso", "Daniel McDonald", "Doug Wendel",
               "Jai Ram Rideout"]

class CommandError(Exception):
    pass

class IncompetentDeveloperError(CommandError):
    pass

class MissingParameterError(CommandError):
    pass

class InvalidReturnTypeError(IncompetentDeveloperError):
    pass

class UnknownParameterError(IncompetentDeveloperError):
    pass

class MissingVersionInfoError(IncompetentDeveloperError):
    pass