Get a BoundArguments object, that maps the passed `args` and `kwargs` to the function's signature. Raises `TypeError` if the passed arguments can not be bound.
(self, /, *args, **kwargs)
| 3228 | return self._bound_arguments_cls(self, arguments) |
| 3229 | |
| 3230 | def bind(self, /, *args, **kwargs): |
| 3231 | """Get a BoundArguments object, that maps the passed `args` |
| 3232 | and `kwargs` to the function's signature. Raises `TypeError` |
| 3233 | if the passed arguments can not be bound. |
| 3234 | """ |
| 3235 | return self._bind(args, kwargs) |
| 3236 | |
| 3237 | def bind_partial(self, /, *args, **kwargs): |
| 3238 | """Get a BoundArguments object, that partially maps the |
no test coverage detected