MCPcopy
hub / github.com/encode/starlette / multi_items

Method multi_items

starlette/datastructures.py:296–297  ·  starlette/datastructures.py::ImmutableMultiDict.multi_items
(self)

Source from the content-addressed store, hash-verified

294 return self._dict.items()
295
296 def multi_items(self) -> list[tuple[_KeyType, _CovariantValueType]]:
297 return list(self._list)
298
299 def __getitem__(self, key: _KeyType) -> _CovariantValueType:
300 return self._dict[key]

Callers 8

__repr__Method · 0.95
handle_requestMethod · 0.80
include_query_paramsMethod · 0.80
remove_query_paramsMethod · 0.80
__init__Method · 0.80
updateMethod · 0.80
closeMethod · 0.80
multi_items_appFunction · 0.80

Calls

no outgoing calls

Tested by 2

handle_requestMethod · 0.64
multi_items_appFunction · 0.64