This file is indexed.

/usr/lib/python3/dist-packages/stsci/distutils/__init__.py is in python3-stsci.distutils 0.3.7-1.

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
try:
    from .version import (__version__, __svn_revision__, __svn_full_info__,
                          __setup_datetime__)
except ImportError:
    # If this happens, I hope this import is happening in the
    # stsci.distutils setup.py because we are about to use
    # stsci.distutils.hooks to install stsci.distutils
    __version__ = 'unspecified during initial install'
    __svn_revision__ = ''
    __svn_full_info__ = ''
    __setup_datetime__ = None