This file is indexed.

/usr/lib/python2.7/dist-packages/pyqi/core/interfaces/html/input_handler.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
31
#!/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__ = ["Evan Bolyen"]

from pyqi.core.exception import IncompetentDeveloperError

def load_file_lines(option_value):
    """Return a list of strings, one per line in the file.

    Each line will have leading and trailing whitespace stripped from it.
    """
    if not hasattr(option_value, 'read'):
        raise IncompetentDeveloperError("Input type must be a file object.")
        
    return [line.strip() for line in option_value]

def load_file_contents(option_value):
    """Return the contents of a file as a single string."""
    if not hasattr(option_value, 'read'):
        raise IncompetentDeveloperError("Input type must be a file object.")
    
    return option_value.read()