(self)
| 516 | ) |
| 517 | |
| 518 | def __reduce__(self): |
| 519 | # Special pickle to zone remains a singleton and to cope with |
| 520 | # database changes. |
| 521 | return pytz._p, ( |
| 522 | self.zone, |
| 523 | _to_seconds(self._utcoffset), |
| 524 | _to_seconds(self._dst), |
| 525 | self._tzname |
| 526 | ) |
| 527 | |
| 528 | |
| 529 | def unpickler(zone, utcoffset=None, dstoffset=None, tzname=None): |
nothing calls this directly
no test coverage detected