Package zeroinstall :: Package injector :: Module model :: Class Stability
[frames] | no frames]

Class Stability

source code

object --+
         |
        Stability

A stability rating. Each implementation has an upstream stability rating and, optionally, a user-set rating.

Instance Methods
 
__init__(self, level, name, description)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
int
__cmp__(self, other) source code
bool
__lt__(self, other) source code
bool
__eq__(self, other) source code
str
__str__(self)
str(x)
source code
 
__repr__(self)
repr(x)
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self, level, name, description)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • description (str)
  • name (str)
  • level (int)
Overrides: object.__init__

__cmp__(self, other)
(Comparison operator)

source code 
Parameters:
Returns: int

__lt__(self, other)
(Less-than operator)

source code 
Parameters:
Returns: bool

__eq__(self, other)
(Equality operator)

source code 
Parameters:
Returns: bool

__str__(self)
(Informal representation operator)

source code 

str(x)

Returns: str
Overrides: object.__str__

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)