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

Method get_value

Lib/string/__init__.py:265–269  ·  view source on GitHub ↗
(self, key, args, kwargs)

Source from the content-addressed store, hash-verified

263 return ''.join(result), auto_arg_index
264
265 def get_value(self, key, args, kwargs):
266 if isinstance(key, int):
267 return args[key]
268 else:
269 return kwargs[key]
270
271 def check_unused_args(self, used_args, args, kwargs):
272 pass

Callers 1

get_fieldMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected