/usr/share/pyshared/cfflib/info.py is in python-cfflib 2.0.5-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 | """ This file contains cmp package information """
_version_major = 2
_version_minor = 0
_version_micro = 5
_version_extra = ''
__version__ = "%s.%s.%s%s" % (_version_major,
_version_minor,
_version_micro,
_version_extra)
|