MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/test/support/hashlib_helper.py:584–588  ·  view source on GitHub ↗
(self, digestname, implementation=None, reason=None)

Source from the content-addressed store, hash-verified

582 """A SkipTest exception raised when a hash is not available."""
583
584 def __init__(self, digestname, implementation=None, reason=None):
585 parts = ["missing", implementation, f"hash algorithm {digestname!r}"]
586 if reason is not None:
587 parts.insert(0, f"{reason}: ")
588 super().__init__(" ".join(filter(None, parts)))
589
590
591class SkipNoHashInCall(SkipNoHash):

Callers

nothing calls this directly

Calls 5

superClass · 0.85
filterFunction · 0.50
insertMethod · 0.45
__init__Method · 0.45
joinMethod · 0.45

Tested by

no test coverage detected