This file is indexed.

/usr/lib/python3/dist-packages/apscheduler/__init__.py is in python3-apscheduler 3.4.0-2ubuntu1.

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
from pkg_resources import get_distribution, DistributionNotFound

try:
    release = get_distribution('APScheduler').version.split('-')[0]
except DistributionNotFound:
    release = '3.4.0'

version_info = tuple(int(x) if x.isdigit() else x for x in release.split('.'))
version = __version__ = '.'.join(str(x) for x in version_info[:3])
del get_distribution, DistributionNotFound