(self, fmt)
| 18 | return f'MutInt({self.value!r})' |
| 19 | |
| 20 | def __format__(self, fmt): |
| 21 | return format(self.value, fmt) |
| 22 | |
| 23 | # Implement the "+" operator. Forward operands (MutInt + other) |
| 24 | def __add__(self, other): |
nothing calls this directly
no outgoing calls
no test coverage detected