This file is indexed.

/usr/lib/python3/dist-packages/pgpy/_author.py is in python3-pgpy 0.4.3-3.

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
16
17
18
"""_author.py

Canonical location for authorship information
__version__ is a PEP-386 compliant version string,
making use of distutils.version.LooseVersion
"""

from distutils.version import LooseVersion

__all__ = ['__author__',
           '__copyright__',
           '__license__',
           '__version__']

__author__ = "Michael Greene"
__copyright__ = "Copyright (c) 2014 Michael Greene"
__license__ = "BSD"
__version__ = str(LooseVersion("0.4.3"))