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

Method __repr__

starlette/datastructures.py:316–319  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

314 return sorted(self._list) == sorted(other._list)
315
316 def __repr__(self) -> str:
317 class_name = self.__class__.__name__
318 items = self.multi_items()
319 return f"{class_name}({items!r})"
320
321
322class MultiDict(ImmutableMultiDict[Any, Any]):

Callers

nothing calls this directly

Calls 1

multi_itemsMethod · 0.95

Tested by

no test coverage detected