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

Method pop

starlette/middleware/sessions.py:114–116  ·  view source on GitHub ↗
(self, key: str, *args: typing.Any)

Source from the content-addressed store, hash-verified

112 super().clear()
113
114 def pop(self, key: str, *args: typing.Any) -> typing.Any:
115 self.modified = self.modified or key in self
116 return super().pop(key, *args)
117
118 def setdefault(self, key: str, default: typing.Any = None) -> typing.Any:
119 if key not in self:

Callers 1

Calls

no outgoing calls

Tested by 1