| 164 | |
| 165 | |
| 166 | class Multiplier: |
| 167 | |
| 168 | def __mul__(self, other): |
| 169 | return f'M*{other}' |
| 170 | |
| 171 | def __rmul__(self, other): |
| 172 | return f'{other}*M' |
| 173 | |
| 174 | |
| 175 | class TestVec2D(VectorComparisonMixin, unittest.TestCase): |
no outgoing calls
searching dependent graphs…