This file is indexed.

/usr/lib/python2.7/dist-packages/pbcommand/__init__.py is in python-pbcommand 0.2.17-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
VERSION = (0, 2, 17)


def get_version():
    """Return the version as a string. "O.7"

    This uses a major.minor.tiny to be compatible with semver spec.

    .. note:: This should be improved to be compliant with PEP 386.
    """
    return ".".join([str(i) for i in VERSION])