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

Method __setstate

Lib/_pydatetime.py:1293–1295  ·  view source on GitHub ↗
(self, string)

Source from the content-addressed store, hash-verified

1291 return bytes([yhi, ylo, self._month, self._day]),
1292
1293 def __setstate(self, string):
1294 yhi, ylo, self._month, self._day = string
1295 self._year = yhi * 256 + ylo
1296
1297 def __reduce__(self):
1298 return (self.__class__, self._getstate())

Callers 1

__new__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected