This file is indexed.

/usr/lib/python3/dist-packages/matplotlib/backends/qt4_compat.py is in python3-matplotlib 1.5.1-1ubuntu1.

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
import warnings
from matplotlib.cbook import mplDeprecation
# bulk-imports because we are pretending that file is this file
from .qt_compat import *
_warn_str = ("This module has been deprecated in 1.4 in favor "
             "of matplotlib.backends.qt_compat\n"
             "This module will be removed in 1.5, please update "
             "your imports.")

warnings.warn(_warn_str, mplDeprecation)