Lines Matching refs:logical_or
3400 def logical_or(self, other, context=None):
4780 def logical_or(self, a, b):
4785 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('0'))
4787 >>> ExtendedContext.logical_or(Decimal('0'), Decimal('1'))
4789 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('0'))
4791 >>> ExtendedContext.logical_or(Decimal('1'), Decimal('1'))
4793 >>> ExtendedContext.logical_or(Decimal('1100'), Decimal('1010'))
4795 >>> ExtendedContext.logical_or(Decimal('1110'), Decimal('10'))
4797 >>> ExtendedContext.logical_or(110, 1101)
4799 >>> ExtendedContext.logical_or(Decimal(110), 1101)
4801 >>> ExtendedContext.logical_or(110, Decimal(1101))
4805 return a.logical_or(b, context=self)