(self)
| 1659 | f'{_type_repr(args[-1])}]') |
| 1660 | |
| 1661 | def __reduce__(self): |
| 1662 | args = self.__args__ |
| 1663 | if not (len(args) == 2 and _is_param_expr(args[0])): |
| 1664 | args = list(args[:-1]), args[-1] |
| 1665 | return operator.getitem, (Callable, args) |
| 1666 | |
| 1667 | |
| 1668 | class _CallableType(_SpecialGenericAlias, _root=True): |
nothing calls this directly
no test coverage detected