MCPcopy Index your code
hub / github.com/python/cpython / __reduce__

Method __reduce__

Lib/typing.py:1661–1665  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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
1668class _CallableType(_SpecialGenericAlias, _root=True):

Callers

nothing calls this directly

Calls 2

listClass · 0.85
_is_param_exprFunction · 0.70

Tested by

no test coverage detected