This file is indexed.

/usr/lib/python3/dist-packages/PyQt4/pyqtconfig.py is in python3-pyqt4 4.11.2+dfsg-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
12
13
14
15
# Import the pyqtconfig.py for the correct python3 version and normal or debug
# build.

import sys

if sys.version_info[1] == 4:
    if 'd' in sys.abiflags:
        try:
            from PyQt4.pyqtconfig_d4 import *
            from PyQt4.pyqtconfig_d4 import _pkg_config, _default_macros
        except ImportError as msg:
            raise ImportError('No module named pyqtconfig; package python3-pyqt4-dbg not installed')
    else:
        from PyQt4.pyqtconfig_nd4 import *
        from PyQt4.pyqtconfig_nd4 import _pkg_config, _default_macros