home *** CD-ROM | disk | FTP | other *** search
/ Freelog 116 / FreelogNo116-JuilletSeptembre2013.iso / Bureautique / gImageReader / gimagereader_0.9-1_win32.exe / bin / distutils / version.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2011-03-24  |  7KB  |  196 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.7)
  3.  
  4. """Provides classes to represent module version numbers (one class for
  5. each style of version numbering).  There are currently two such classes
  6. implemented: StrictVersion and LooseVersion.
  7.  
  8. Every version number class implements the following interface:
  9.   * the 'parse' method takes a string and parses it to some internal
  10.     representation; if the string is an invalid version number,
  11.     'parse' raises a ValueError exception
  12.   * the class constructor takes an optional string argument which,
  13.     if supplied, is passed to 'parse'
  14.   * __str__ reconstructs the string that was passed to 'parse' (or
  15.     an equivalent string -- ie. one that will generate an equivalent
  16.     version number instance)
  17.   * __repr__ generates Python code to recreate the version number instance
  18.   * __cmp__ compares the current instance with either another instance
  19.     of the same class or a string (which will be parsed to an instance
  20.     of the same class, thus must follow the same rules)
  21. """
  22. import string
  23. import re
  24. from types import StringType
  25.  
  26. class Version:
  27.     '''Abstract base class for version numbering classes.  Just provides
  28.     constructor (__init__) and reproducer (__repr__), because those
  29.     seem to be the same for all version numbering classes.
  30.     '''
  31.     
  32.     def __init__(self, vstring = None):
  33.         if vstring:
  34.             self.parse(vstring)
  35.  
  36.     
  37.     def __repr__(self):
  38.         return "%s ('%s')" % (self.__class__.__name__, str(self))
  39.  
  40.  
  41.  
  42. class StrictVersion(Version):
  43.     '''Version numbering for anal retentives and software idealists.
  44.     Implements the standard interface for version number classes as
  45.     described above.  A version number consists of two or three
  46.     dot-separated numeric components, with an optional "pre-release" tag
  47.     on the end.  The pre-release tag consists of the letter \'a\' or \'b\'
  48.     followed by a number.  If the numeric components of two version
  49.     numbers are equal, then one with a pre-release tag will always
  50.     be deemed earlier (lesser) than one without.
  51.  
  52.     The following are valid version numbers (shown in the order that
  53.     would be obtained by sorting according to the supplied cmp function):
  54.  
  55.         0.4       0.4.0  (these two are equivalent)
  56.         0.4.1
  57.         0.5a1
  58.         0.5b3
  59.         0.5
  60.         0.9.6
  61.         1.0
  62.         1.0.4a3
  63.         1.0.4b1
  64.         1.0.4
  65.  
  66.     The following are examples of invalid version numbers:
  67.  
  68.         1
  69.         2.7.2.2
  70.         1.3.a4
  71.         1.3pl1
  72.         1.3c4
  73.  
  74.     The rationale for this version numbering system will be explained
  75.     in the distutils documentation.
  76.     '''
  77.     version_re = re.compile('^(\\d+) \\. (\\d+) (\\. (\\d+))? ([ab](\\d+))?$', re.VERBOSE)
  78.     
  79.     def parse(self, vstring):
  80.         match = self.version_re.match(vstring)
  81.         if not match:
  82.             raise ValueError, "invalid version number '%s'" % vstring
  83.         (major, minor, patch, prerelease, prerelease_num) = match.group(1, 2, 4, 5, 6)
  84.         if patch:
  85.             self.version = tuple(map(string.atoi, [
  86.                 major,
  87.                 minor,
  88.                 patch]))
  89.         else:
  90.             self.version = tuple(map(string.atoi, [
  91.                 major,
  92.                 minor]) + [
  93.                 0])
  94.         if prerelease:
  95.             self.prerelease = (prerelease[0], string.atoi(prerelease_num))
  96.         else:
  97.             self.prerelease = None
  98.  
  99.     
  100.     def __str__(self):
  101.         if self.version[2] == 0:
  102.             vstring = string.join(map(str, self.version[0:2]), '.')
  103.         else:
  104.             vstring = string.join(map(str, self.version), '.')
  105.         if self.prerelease:
  106.             vstring = vstring + self.prerelease[0] + str(self.prerelease[1])
  107.         return vstring
  108.  
  109.     
  110.     def __cmp__(self, other):
  111.         if isinstance(other, StringType):
  112.             other = StrictVersion(other)
  113.         compare = cmp(self.version, other.version)
  114.         if compare == 0:
  115.             if not (self.prerelease) and not (other.prerelease):
  116.                 return 0
  117.             if None.prerelease and not (other.prerelease):
  118.                 return -1
  119.             if not (None.prerelease) and other.prerelease:
  120.                 return 1
  121.             if None.prerelease and other.prerelease:
  122.                 return cmp(self.prerelease, other.prerelease)
  123.         return compare
  124.  
  125.  
  126.  
  127. class LooseVersion(Version):
  128.     '''Version numbering for anarchists and software realists.
  129.     Implements the standard interface for version number classes as
  130.     described above.  A version number consists of a series of numbers,
  131.     separated by either periods or strings of letters.  When comparing
  132.     version numbers, the numeric components will be compared
  133.     numerically, and the alphabetic components lexically.  The following
  134.     are all valid version numbers, in no particular order:
  135.  
  136.         1.5.1
  137.         1.5.2b2
  138.         161
  139.         3.10a
  140.         8.02
  141.         3.4j
  142.         1996.07.12
  143.         3.2.pl0
  144.         3.1.1.6
  145.         2g6
  146.         11g
  147.         0.960923
  148.         2.2beta29
  149.         1.13++
  150.         5.5.kw
  151.         2.0b1pl0
  152.  
  153.     In fact, there is no such thing as an invalid version number under
  154.     this scheme; the rules for comparison are simple and predictable,
  155.     but may not always give the results you want (for some definition
  156.     of "want").
  157.     '''
  158.     component_re = re.compile('(\\d+ | [a-z]+ | \\.)', re.VERBOSE)
  159.     
  160.     def __init__(self, vstring = None):
  161.         if vstring:
  162.             self.parse(vstring)
  163.  
  164.     
  165.     def parse(self, vstring):
  166.         self.vstring = vstring
  167.         components = filter((lambda x: if x:
  168. passx != '.'), self.component_re.split(vstring))
  169.         for i in range(len(components)):
  170.             
  171.             try:
  172.                 components[i] = int(components[i])
  173.             continue
  174.             except ValueError:
  175.                 continue
  176.             
  177.  
  178.         
  179.         self.version = components
  180.  
  181.     
  182.     def __str__(self):
  183.         return self.vstring
  184.  
  185.     
  186.     def __repr__(self):
  187.         return "LooseVersion ('%s')" % str(self)
  188.  
  189.     
  190.     def __cmp__(self, other):
  191.         if isinstance(other, StringType):
  192.             other = LooseVersion(other)
  193.         return cmp(self.version, other.version)
  194.  
  195.  
  196.