This file is indexed.

/usr/lib/python3/dist-packages/sipconfig.py is in python3-sip 4.17+dfsg-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] == 5:
    if 'd' in sys.abiflags:
        try:
            from sipconfig_d5 import *
            from sipconfig_d5 import _pkg_config, _default_macros
        except ImportError:
            raise ImportError('No module named sipconfig; package python3-sip-dbg not installed')
    else:
        from sipconfig_nd5 import *
        from sipconfig_nd5 import _pkg_config, _default_macros