Reset timezone cache. For internal use only.
()
| 80 | |
| 81 | |
| 82 | def _reset_timezone_cache() -> None: |
| 83 | """Reset timezone cache. For internal use only.""" |
| 84 | get_default_timezone.cache_clear() |
| 85 | get_use_tz.cache_clear() |
| 86 | get_timezone.cache_clear() |
| 87 | |
| 88 | |
| 89 | def _get_or_parse_timezone(timezone: tzinfo | str | None = None) -> tzinfo: |
no outgoing calls
no test coverage detected
searching dependent graphs…