()
| 2167 | @classmethod |
| 2168 | def _populate_zonedump_data(cls): |
| 2169 | def _Africa_Abidjan(): |
| 2170 | LMT = ZoneOffset("LMT", timedelta(seconds=-968)) |
| 2171 | GMT = ZoneOffset("GMT", ZERO) |
| 2172 | |
| 2173 | return [ |
| 2174 | ZoneTransition(datetime(1912, 1, 1), LMT, GMT), |
| 2175 | ] |
| 2176 | |
| 2177 | def _Africa_Casablanca(): |
| 2178 | P00_s = ZoneOffset("+00", ZERO, ZERO) |
nothing calls this directly
no test coverage detected