Get a BoundArguments object, that partially maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound.
(self, /, *args, **kwargs)
| 3242 | return self._bind(args, kwargs) |
| 3243 | |
| 3244 | def bind_partial(self, /, *args, **kwargs): |
| 3245 | """Get a BoundArguments object, that partially maps the |
| 3246 | passed `args` and `kwargs` to the function's signature. |
| 3247 | Raises `TypeError` if the passed arguments can not be bound. |
| 3248 | """ |
| 3249 | return self._bind(args, kwargs, partial=True) |
| 3250 | |
| 3251 | def __reduce__(self): |
| 3252 | return (type(self), |