See datetime.tzinfo.dst is_dst is ignored for StaticTzInfo, and exists only to retain compatibility with DstTzInfo.
(self, dt, is_dst=None)
| 94 | return self._utcoffset |
| 95 | |
| 96 | def dst(self, dt, is_dst=None): |
| 97 | '''See datetime.tzinfo.dst |
| 98 | |
| 99 | is_dst is ignored for StaticTzInfo, and exists only to |
| 100 | retain compatibility with DstTzInfo. |
| 101 | ''' |
| 102 | return _notime |
| 103 | |
| 104 | def tzname(self, dt, is_dst=None): |
| 105 | '''See datetime.tzinfo.tzname |
nothing calls this directly
no outgoing calls
no test coverage detected