partial_right()
Enhanced partial_right with _argcount support.
Implementation
Example
Expected output:
Source Code
def partial_right(func: Callable, *bound_args, **bound_kwargs) -> Callable:
return enhanced_partial_right(func, *bound_args, **bound_kwargs)