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)
| 3195 | return self._bind(args, kwargs) |
| 3196 | |
| 3197 | def bind_partial(self, /, *args, **kwargs): |
| 3198 | """Get a BoundArguments object, that partially maps the |
| 3199 | passed `args` and `kwargs` to the function's signature. |
| 3200 | Raises `TypeError` if the passed arguments can not be bound. |
| 3201 | """ |
| 3202 | return self._bind(args, kwargs, partial=True) |
| 3203 | |
| 3204 | def __reduce__(self): |
| 3205 | return (type(self), |
no test coverage detected