This file is indexed.

/usr/lib/python2.7/dist-packages/fabio/test/bug16_ppc64le.py is in python-fabio 0.3.0+dfsg-1build1.

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
import numpy
from fabio import compression
test = numpy.array([0, 1, 2, 127, 0, 1, 2, 128, 0, 1, 2, 32767, 0, 1, 2, 32768, 0, 1, 2, 2147483647, 0, 1, 2, 2147483648, 0, 1, 2, 128, 129, 130, 32767, 32768, 128, 129, 130, 32768, 2147483647, 2147483648])
b = compression.compByteOffset_numpy(test)
print(compression.decByteOffset_cython(b) - test)
print(compression.decByteOffset_numpy(b) - test)