| 154 | return self.__dstoffset |
| 155 | |
| 156 | class PicklableFixedOffset(FixedOffset): |
| 157 | |
| 158 | def __init__(self, offset=None, name=None, dstoffset=None): |
| 159 | FixedOffset.__init__(self, offset, name, dstoffset) |
| 160 | |
| 161 | class PicklableFixedOffsetWithSlots(PicklableFixedOffset): |
| 162 | __slots__ = '_FixedOffset__offset', '_FixedOffset__name', 'spam' |
no outgoing calls
searching dependent graphs…