This file is indexed.

/usr/lib/python3/dist-packages/mkdocs/__init__.py is in mkdocs 0.16.3-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
 8
 9
10
11
12
13
14
#!/usr/bin/env python
# coding: utf-8

from __future__ import unicode_literals

import sys

sys.path.insert(1, "/usr/share/mkdocs/themes")

if sys.version_info < (2, 7):
    sys.stderr.write(("WARNING: Support for Python 2.6 will be dropped in the "
                      "1.0.0 release of MkDocs\n\n"))

__version__ = '0.16.3'