/usr/lib/python2.7/dist-packages/exabgp/version.py is in python-exabgp 4.0.2-2.
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 | import os
release = "4.0.2-1c737d99"
json = "4.0.1"
text = "4.0.1"
version = os.environ.get('EXABGP_VERSION',release)
# Do not change the first line as it is parsed by scripts
if __name__ == '__main__':
import sys
sys.stdout.write(version)
|