This file is indexed.

/usr/share/pyshared/telepathy/_version.py is in python-telepathy 0.15.19-2.1build1.

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
__all__ = ('version', '__version__')

# src/_version.py.  Generated from _version.py.in by configure.
version = (0, 15, 19)

# Append a 1 to the version string only if this is *not* a released version.
if not 1:
    version += (1,)

__version__ = '.'.join(str(x) for x in version)