(self, cls)
| 575 | raise TypeError(f"{self} cannot be used with isinstance()") |
| 576 | |
| 577 | def __subclasscheck__(self, cls): |
| 578 | raise TypeError(f"{self} cannot be used with issubclass()") |
| 579 | |
| 580 | @_tp_cache |
| 581 | def __getitem__(self, parameters): |
no outgoing calls
no test coverage detected