Methods
|
|
__and__
__cmp__
__hash__
__invert__
__or__
conjuncts
disjuncts
|
|
__and__
|
__and__ ( cond )
Return the conjunction ("and") of this condition with cond
|
|
__cmp__
|
__cmp__ ( other )
Conditionals must be comparable to each other
|
|
__hash__
|
__hash__ ( other )
Conditionals must be hashable
|
|
__invert__
|
__invert__ ()
Return the inverse ("not") of this condition
|
|
__or__
|
__or__ ( expr )
Return the disjunction ("or") of this expression with expr
|
|
conjuncts
|
conjuncts ()
Return the sequence of conjuncts of this condition
For an "and" operation, this should return the and-ed conditions.
For most other operations, this should return a one-element sequence
containing the condition object itself.
|
|
disjuncts
|
disjuncts ()
Return the sequence of disjuncts of this condition
For an "or" operation, this should return the or-ed conditions.
For most other operations, this should return a one-element sequence
containing the condition object itself.
|