MCPcopy Create free account
hub / github.com/pyca/cryptography / __init__

Method __init__

src/cryptography/utils.py:66–68  ·  view source on GitHub ↗
(self, module: types.ModuleType)

Source from the content-addressed store, hash-verified

64
65class _ModuleWithDeprecations(types.ModuleType):
66 def __init__(self, module: types.ModuleType):
67 super().__init__(module.__name__)
68 self.__dict__["_module"] = module
69
70 def __getattr__(self, attr: str) -> object:
71 obj = getattr(self._module, attr)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected