Base Package Object - sets up the default storage dicts and the most
common returns
|
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature |
source code
|
|
|
|
|
|
|
|
|
verCMP(self,
other)
Compare package to another one, only rpm-version ordering. |
source code
|
|
|
__cmp__(self,
other)
Compare packages, this is just for UI/consistency. |
source code
|
|
|
__eq__(self,
other)
Compare packages for yes/no equality, includes everything in the UI
package comparison. |
source code
|
|
|
|
|
|
|
verEQ(self,
other)
Compare package to another one, only rpm-version equality. |
source code
|
|
|
verLT(self,
other)
Uses verCMP, tests if the other _rpm-version_ is < ours. |
source code
|
|
|
verLE(self,
other)
Uses verCMP, tests if the other _rpm-version_ is <= ours. |
source code
|
|
|
verGT(self,
other)
Uses verCMP, tests if the other _rpm-version_ is > ours. |
source code
|
|
|
verGE(self,
other)
Uses verCMP, tests if the other _rpm-version_ is >= ours. |
source code
|
|
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|