This file is indexed.

/usr/lib/python2.7/dist-packages/pyfits/hdu/__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
from .base import (register_hdu, unregister_hdu, DELAYED, BITPIX2DTYPE,
                   DTYPE2BITPIX)
from .compressed import CompImageHDU
from .groups import GroupsHDU, GroupData, Group
from .hdulist import HDUList
from .image import PrimaryHDU, ImageHDU
from .nonstandard import FitsHDU
from .streaming import StreamingHDU
from .table import TableHDU, BinTableHDU

__all__ = ['HDUList', 'PrimaryHDU', 'ImageHDU', 'TableHDU', 'BinTableHDU',
           'GroupsHDU', 'GroupData', 'Group', 'CompImageHDU', 'FitsHDU',
           'StreamingHDU', 'register_hdu', 'unregister_hdu', 'DELAYED',
           'BITPIX2DTYPE', 'DTYPE2BITPIX']