(self, obj: Any, cls: Type[Any])
| 462 | |
| 463 | class slots_dispatcher(dispatcher[_ET]): |
| 464 | def __get__(self, obj: Any, cls: Type[Any]) -> Any: |
| 465 | if obj is None: |
| 466 | return self.dispatch |
| 467 | |
| 468 | if hasattr(obj, "_slots_dispatch"): |
| 469 | return obj._slots_dispatch |
| 470 | |
| 471 | disp = self.dispatch._for_instance(obj) |
| 472 | obj._slots_dispatch = disp |
| 473 | return disp |
nothing calls this directly
no test coverage detected