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

Method __delitem__

starlette/middleware/sessions.py:106–108  ·  view source on GitHub ↗
(self, key: str)

Source from the content-addressed store, hash-verified

104 super().__setitem__(key, value)
105
106 def __delitem__(self, key: str) -> None:
107 self.mark_modified()
108 super().__delitem__(key)
109
110 def clear(self) -> None:
111 self.mark_modified()

Callers

nothing calls this directly

Calls 1

mark_modifiedMethod · 0.95

Tested by

no test coverage detected