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

Method __setstate__

Lib/zipfile/_path/__init__.py:96–98  ·  view source on GitHub ↗
(self, state)

Source from the content-addressed store, hash-verified

94 return self._saved___init__.args, self._saved___init__.kwargs
95
96 def __setstate__(self, state):
97 args, kwargs = state
98 super().__init__(*args, **kwargs)
99
100
101class CompleteDirs(InitializedState, zipfile.ZipFile):

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected