MCPcopy Index your code
hub / github.com/python/cpython / vformat

Method vformat

Lib/string/__init__.py:205–209  ·  view source on GitHub ↗
(self, format_string, args, kwargs)

Source from the content-addressed store, hash-verified

203 return self.vformat(format_string, args, kwargs)
204
205 def vformat(self, format_string, args, kwargs):
206 used_args = set()
207 result, _ = self._vformat(format_string, args, kwargs, used_args, 2)
208 self.check_unused_args(used_args, args, kwargs)
209 return result
210
211 def _vformat(self, format_string, args, kwargs, used_args, recursion_depth,
212 auto_arg_index=0):

Callers 1

formatMethod · 0.95

Calls 3

_vformatMethod · 0.95
check_unused_argsMethod · 0.95
setFunction · 0.85

Tested by

no test coverage detected