MCPcopy
hub / github.com/aws/aws-cli / __init__

Method __init__

tests/__init__.py:364–368  ·  view source on GitHub ↗
(self, data=None, **kwargs)

Source from the content-addressed store, hash-verified

362# CaseInsensitiveDict from requests that must be serializble.
363class CaseInsensitiveDict(collections_abc.MutableMapping):
364 def __init__(self, data=None, **kwargs):
365 self._store = dict()
366 if data is None:
367 data = {}
368 self.update(data, **kwargs)
369
370 def __setitem__(self, key, value):
371 # Use the lowercased key for lookups, but store the actual

Callers

nothing calls this directly

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected