(self, format_string, args, kwargs)
| 190 | return self.vformat(format_string, args, kwargs) |
| 191 | |
| 192 | def vformat(self, format_string, args, kwargs): |
| 193 | used_args = set() |
| 194 | result, _ = self._vformat(format_string, args, kwargs, used_args, 2) |
| 195 | self.check_unused_args(used_args, args, kwargs) |
| 196 | return result |
| 197 | |
| 198 | def _vformat(self, format_string, args, kwargs, used_args, recursion_depth, |
| 199 | auto_arg_index=0): |
no test coverage detected