This file is indexed.

/usr/lib/python2.7/dist-packages/pyfits/__init__.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
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This is the configuration file for the pyfits namespace.

from __future__ import division

try:
    from .version import __version__
except:
    __version__ = ''

# Import the pyfits core module.
from . import core
from .core import *
from .util import *

__doc__ = core.__doc__

__all__ = core.__all__


try:
    import stsci.tools.tester

    def test(*args, **kwds):
        stsci.tools.tester.test(modname=__name__, *args, **kwds)
except ImportError:
    pass