(self)
| 148 | return '<StaticTzInfo %r>' % (self.zone,) |
| 149 | |
| 150 | def __reduce__(self): |
| 151 | # Special pickle to zone remains a singleton and to cope with |
| 152 | # database changes. |
| 153 | return pytz._p, (self.zone,) |
| 154 | |
| 155 | |
| 156 | class DstTzInfo(BaseTzInfo): |
nothing calls this directly
no outgoing calls
no test coverage detected