MCPcopy Create free account
hub / github.com/RustPython/RustPython / format_map

Method format_map

Lib/collections/__init__.py:1495–1496  ·  view source on GitHub ↗
(self, mapping)

Source from the content-addressed store, hash-verified

1493 return self.data.format(*args, **kwds)
1494
1495 def format_map(self, mapping):
1496 return self.data.format_map(mapping)
1497
1498 def index(self, sub, start=0, end=_sys.maxsize):
1499 if isinstance(sub, UserString):

Callers 5

test_reprMethod · 0.45
test_format_mapMethod · 0.45
test_match_getitemMethod · 0.45
builtin_str.pyFile · 0.45

Calls

no outgoing calls

Tested by 4

test_reprMethod · 0.36
test_format_mapMethod · 0.36
test_match_getitemMethod · 0.36