(self, string)
| 1203 | return bytes([yhi, ylo, self._month, self._day]), |
| 1204 | |
| 1205 | def __setstate(self, string): |
| 1206 | yhi, ylo, self._month, self._day = string |
| 1207 | self._year = yhi * 256 + ylo |
| 1208 | |
| 1209 | def __reduce__(self): |
| 1210 | return (self.__class__, self._getstate()) |