(self, other)
| 5558 | return _anonymous_label(label) |
| 5559 | |
| 5560 | def __add__(self, other): |
| 5561 | if "%" in other and not isinstance(other, _anonymous_label): |
| 5562 | other = str(other).replace("%", "%%") |
| 5563 | else: |
| 5564 | other = str(other) |
| 5565 | |
| 5566 | return _anonymous_label( |
| 5567 | quoted_name( |
| 5568 | str.__add__(self, other), |
| 5569 | self.quote, |
| 5570 | ) |
| 5571 | ) |
| 5572 | |
| 5573 | def __radd__(self, other): |
| 5574 | if "%" in other and not isinstance(other, _anonymous_label): |
no test coverage detected