This file is indexed.

/usr/lib/python2.7/dist-packages/circuits/version.py is in python-circuits 3.1.0+ds1-1.

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
# Package:  version
# Date:     12th October 2013
# Author:   James Mills, j dot mills at griffith dot edu dot au

"""Version Module

So we only have to maintain version information in one place!
"""

version_info = (3, 1, 0)  # (major, minor, patch, dev?)
version = ".".join(map(str, version_info))