(self)
| 1623 | f'{_type_repr(args[-1])}]') |
| 1624 | |
| 1625 | def __reduce__(self): |
| 1626 | args = self.__args__ |
| 1627 | if not (len(args) == 2 and _is_param_expr(args[0])): |
| 1628 | args = list(args[:-1]), args[-1] |
| 1629 | return operator.getitem, (Callable, args) |
| 1630 | |
| 1631 | |
| 1632 | class _CallableType(_SpecialGenericAlias, _root=True): |
nothing calls this directly
no test coverage detected