(self, flag)
| 1605 | return bool(self._value_) |
| 1606 | |
| 1607 | def _get_value(self, flag): |
| 1608 | if isinstance(flag, self.__class__): |
| 1609 | return flag._value_ |
| 1610 | elif self._member_type_ is not object and isinstance(flag, self._member_type_): |
| 1611 | return flag |
| 1612 | return NotImplemented |
| 1613 | |
| 1614 | def __or__(self, other): |
| 1615 | other_value = self._get_value(other) |
no outgoing calls
no test coverage detected