(self, *boolexprs)
| 328 | |
| 329 | class Or(InfixedBooleanExpression, Combinative): |
| 330 | def __init__(self, *boolexprs): super(Or, self).__init__('or', *boolexprs) |
| 331 | |
| 332 | class InfixedComparisonExpression(Infixed, BooleanExpression): |
| 333 | def __init__(self, infix, left, right): |
no outgoing calls
no test coverage detected