/usr/share/pyshared/xmlrunner/version.py is in python-xmlrunner 1.5.0-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 12 13 14 | # -*- coding: utf-8 -*-
"""
xmlrunner.version
~~~~~~~~~~~~~~~~~
Runtime library version information.
:codeauthor: :email:`Pedro Algarvio (pedro@algarvio.me)`
:copyright: © 2013 Pedro Algarvio.
:license: LGPL, see LICENSE for more details.
"""
__version_info__ = (1, 5, 0)
__version__ = '.'.join(map(str, __version_info__))
|