(self)
| 82 | return [f"{param}={op!r}" for param, op in zip(self._parameters, self.operands)] |
| 83 | |
| 84 | def __str__(self): |
| 85 | s = ", ".join(self._operands_for_repr()) |
| 86 | return f"{type(self).__name__}({s})" |
| 87 | |
| 88 | def __repr__(self): |
| 89 | return str(self) |
nothing calls this directly
no test coverage detected