MCPcopy Create free account
hub / github.com/HypothesisWorks/hypothesis / delete

Method delete

hypothesis/src/hypothesis/database.py:248–253  ·  view source on GitHub ↗

Remove ``value`` from ``key``. If ``value`` is not present in ``key``, silently do nothing.

(self, key: bytes, value: bytes)

Source from the content-addressed store, hash-verified

246
247 @abc.abstractmethod
248 def delete(self, key: bytes, value: bytes) -> None:
249 """Remove ``value`` from ``key``.
250
251 If ``value`` is not present in ``key``, silently do nothing.
252 """
253 raise NotImplementedError(f"{type(self).__name__}.delete")
254
255 def move(self, src: bytes, dest: bytes, value: bytes) -> None:
256 """

Callers 2

moveMethod · 0.95
deleteMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected