MCPcopy
hub / github.com/benoitc/gunicorn / __delitem__

Method __delitem__

gunicorn/dirty/stash.py:370–372  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

368 self._client.put(self._name, key, value)
369
370 def __delitem__(self, key):
371 if not self._client.delete(self._name, key):
372 raise KeyError(key)
373
374 def __contains__(self, key):
375 return self._client.exists(self._name, key)

Callers

nothing calls this directly

Calls 1

deleteMethod · 0.80

Tested by

no test coverage detected