(self)
| 1199 | # Pickle support. |
| 1200 | |
| 1201 | def _getstate(self): |
| 1202 | yhi, ylo = divmod(self._year, 256) |
| 1203 | return bytes([yhi, ylo, self._month, self._day]), |
| 1204 | |
| 1205 | def __setstate(self, string): |
| 1206 | yhi, ylo, self._month, self._day = string |
no outgoing calls
no test coverage detected