This file is indexed.

/usr/lib/python3/dist-packages/iniparse/configparser.py is in python3-iniparse 0.4-2.2.

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
try:
    from ConfigParser import *
    # not all objects get imported with __all__
    from ConfigParser import Error, InterpolationMissingOptionError
except ImportError:
    from configparser import *
    from configparser import Error, InterpolationMissingOptionError