Lines Matching defs:version
44 version = '1'
270 """Splits a version string into a tuple of integers.
277 (This permits Python-style version strings such as "1.4b3".)
279 version = []
283 raise ValueError('Unsupported version string: ' + repr(s))
284 version.append(int(''.join(accumulator)))
294 version.append('abc'.index(c) - 3)
296 raise ValueError('Illegal character ' + repr(c) + ' in version string ' + repr(s))
298 return tuple(version)
4079 global version
4080 if version_comparitor(version, required) < 0:
4081 fail("Insufficient Clinic version!\n Version: " + version + "\n Required: " + required)