(self, string)
| 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()) |