This file is indexed.

/usr/lib/python2.7/dist-packages/exam/fixtures.py is in python-exam 0.10.5-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
#: A string representation of a 2px square GIF, suitable for use in PIL.
two_px_square_image = (
    'GIF87a\x02\x00\x02\x00\xb3\x00\x00\x00\x00\x00\xff\xff\xff\x00\x00' +
    '\x00\x00\x00\x00\x00\x00\x00\xff\x00\xff\x00\x00\x00\x00\x00\x00' +
    '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' +
    '\x00\x00\x00\x00\x00\x00\x00\x00,\x00\x00\x00\x00\x02\x00\x02\x00' +
    '\x00\x04\x04\x10\x94\x02"\x00;'
    )

#: A string representation of a 1px square GIF, suitable for use in PIL.
one_px_spacer = (
    'GIF89a\x01\x00\x01\x00\x80\x00\x00\xdb\xdf\xef\x00\x00\x00!\xf9\x04' +
    '\x01\x00\x00\x00\x00,\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02D' +
    '\x01\x00;'
    )