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

Method __init__

Lib/test/support/hashlib_helper.py:263–267  ·  view source on GitHub ↗
(self, canonical_name, builtin, openssl=None, hashlib=None)

Source from the content-addressed store, hash-verified

261 """
262
263 def __init__(self, canonical_name, builtin, openssl=None, hashlib=None):
264 super().__init__(canonical_name)
265 self.builtin = _HashInfoItem(builtin, strict=True)
266 self.openssl = _HashInfoItem(openssl, strict=False)
267 self.hashlib = _HashInfoItem(hashlib, strict=False)
268
269 def fullname(self, implementation):
270 """Get the fully qualified name of a given implementation.

Callers

nothing calls this directly

Calls 3

superClass · 0.85
_HashInfoItemClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected