This file is indexed.

/usr/lib/python3/dist-packages/sipconfig.py is in python3-sip 4.15.5-1build1.

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 sipconfig.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 sipconfig_d4 import *
            from sipconfig_d4 import _pkg_config, _default_macros
        except ImportError as msg:
            raise ImportError('No module named sipconfig; package python3-sip4-dbg not installed')
    else:
        from sipconfig_nd4 import *
        from sipconfig_nd4 import _pkg_config, _default_macros