/usr/share/pyshared/pymodbus/version.py is in python-pymodbus 0.9.0+r175-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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | '''
Handle the version information here; you should only have to
change the version tuple.
Since we are using twisted's version class, we can also query
the svn version as well using the local .entries file.
'''
class Version(object):
def __init__(self, package, major, minor, micro):
'''
:param package: Name of the package that this is a version of.
:param major: The major version number.
:param minor: The minor version number.
:param micro: The micro version number.
'''
self.package = package
self.major = major
self.minor = minor
self.micro = micro
def short(self):
''' Return a string in canonical short version format
<major>.<minor>.<micro>
'''
return '%d.%d.%d' % (self.major, self.minor, self.micro)
def __str__(self):
''' Returns a string representation of the object
:returns: A string representation of this object
'''
return '[%s, version %s]' % (self.package, self.short())
version = Version('pymodbus', 0, 9, 0)
version.__name__ = 'pymodbus' # fix epydoc error
#---------------------------------------------------------------------------#
# Exported symbols
#---------------------------------------------------------------------------#
__all__ = ["version"]
|