MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / vformat

Method vformat

tools/python-3.11.9-amd64/Lib/string.py:192–196  ·  view source on GitHub ↗
(self, format_string, args, kwargs)

Source from the content-addressed store, hash-verified

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):

Callers 1

formatMethod · 0.95

Calls 3

_vformatMethod · 0.95
check_unused_argsMethod · 0.95
setFunction · 0.50

Tested by

no test coverage detected