Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Public Member Functions | Static Public Attributes | Protected Attributes | List of all members
pip._vendor.distlib.version.NormalizedVersion Class Reference
Inheritance diagram for pip._vendor.distlib.version.NormalizedVersion:
Inheritance graph
[legend]
Collaboration diagram for pip._vendor.distlib.version.NormalizedVersion:
Collaboration graph
[legend]

Public Member Functions

 parse (self, s)
 
 is_prerelease (self)
 
- Public Member Functions inherited from pip._vendor.distlib.version.Version
 __init__ (self, s)
 
 __eq__ (self, other)
 
 __ne__ (self, other)
 
 __lt__ (self, other)
 
 __gt__ (self, other)
 
 __le__ (self, other)
 
 __ge__ (self, other)
 
 __hash__ (self)
 
 __repr__ (self)
 
 __str__ (self)
 

Static Public Attributes

 PREREL_TAGS = set(['a', 'b', 'c', 'rc', 'dev'])
 

Protected Attributes

 _release_clause
 
- Protected Attributes inherited from pip._vendor.distlib.version.Version
 _string
 
 _parts
 

Additional Inherited Members

- Protected Member Functions inherited from pip._vendor.distlib.version.Version
 _check_compatible (self, other)
 

Detailed Description

A rational version.

Good:
    1.2         # equivalent to "1.2.0"
    1.2.0
    1.2a1
    1.2.3a2
    1.2.3b1
    1.2.3c1
    1.2.3.4
    TODO: fill this out

Bad:
    1           # minimum two numbers
    1.2a        # release level must have a release serial
    1.2.3b

Member Function Documentation

◆ is_prerelease()

pip._vendor.distlib.version.NormalizedVersion.is_prerelease (   self)

◆ parse()

pip._vendor.distlib.version.NormalizedVersion.parse (   self,
  s 
)

The documentation for this class was generated from the following file: