This file is indexed.

/usr/lib/python2.7/dist-packages/pyfits/_compat/weakref.py is in python-pyfits 1:3.4-4ubuntu1.

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
"""Support WeakSet on Python 2.6"""

try:
    from weakref import WeakSet
except ImportError:
    from ._weakset_py2 import WeakSet