(self, arg)
| 3619 | |
| 3620 | @functools.singledispatchmethod |
| 3621 | def u(self, arg): |
| 3622 | return 'general', arg |
| 3623 | u.register(int, Callable('special')) |
| 3624 | |
| 3625 | v = functools.singledispatchmethod(Callable('general')) |
no outgoing calls
no test coverage detected