| 228 | # test that table doesn't participate in unit machinery, instead uses repr/str |
| 229 | |
| 230 | class FakeUnit: |
| 231 | def __init__(self, thing): |
| 232 | pass |
| 233 | def __repr__(self): |
| 234 | return "Hello" |
| 235 | |
| 236 | fake_convertor = munits.ConversionInterface() |
| 237 | # v, u, a = value, unit, axis |
no outgoing calls
searching dependent graphs…