(self, string)
| 1276 | return bytes([yhi, ylo, self._month, self._day]), |
| 1277 | |
| 1278 | def __setstate(self, string): |
| 1279 | yhi, ylo, self._month, self._day = string |
| 1280 | self._year = yhi * 256 + ylo |
| 1281 | |
| 1282 | def __reduce__(self): |
| 1283 | return (self.__class__, self._getstate()) |