Return the currently active time zone as a tzinfo instance.
()
| 62 | |
| 63 | |
| 64 | def get_current_timezone(): |
| 65 | """Return the currently active time zone as a tzinfo instance.""" |
| 66 | return getattr(_active, "value", get_default_timezone()) |
| 67 | |
| 68 | |
| 69 | def get_current_timezone_name(): |
no test coverage detected