This file is indexed.

/usr/lib/python2.7/dist-packages/sipconfig.py is in python-sip 4.16.4+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
# import the sipconfig.py for the normal or the debug build

import sys

if getattr(sys, "pydebug", False):
    try:
        from sipconfig_d import *
        from sipconfig_d import _pkg_config, _default_macros
    except ImportError, msg:
        raise ImportError, 'No module named sipconfig; package python-sip4-dbg not installed'
else:
    from sipconfig_nd import *
    from sipconfig_nd import _pkg_config, _default_macros