sbsv2/raptor/python/raptor_version.py
branchwip
changeset 5 593a8820b912
parent 3 e1eecf4d390d
child 9 b211d87c390a
equal deleted inserted replaced
3:e1eecf4d390d 5:593a8820b912
    13 #
    13 #
    14 # Description: 
    14 # Description: 
    15 # raptor version information module
    15 # raptor version information module
    16 #
    16 #
    17 
    17 
    18 def Version():
    18 version=(2,11,0,"2009-11-16","pp-preview")
       
    19 
       
    20 def numericversion():
    19 	"""Raptor version string"""
    21 	"""Raptor version string"""
    20 	return "2.10.2 [2009-11-12 sf release]"
    22 	return "%d.%d.%d" % version[:3]
       
    23 
       
    24 def fullversion():
       
    25 	"""Raptor version string"""
       
    26 	return "%d.%d.%d [%s %s]" % version