1# -*- coding: utf-8 -*-
2from .tz import *
3from .tz import __doc__
4
5#: Convenience constant providing a :class:`tzutc()` instance
6#:
7#: .. versionadded:: 2.7.0
8UTC = tzutc()
9
10__all__ = ["tzutc", "tzoffset", "tzlocal", "tzfile", "tzrange",
11           "tzstr", "tzical", "tzwin", "tzwinlocal", "gettz",
12           "enfold", "datetime_ambiguous", "datetime_exists",
13           "resolve_imaginary", "UTC", "DeprecatedTzFormatWarning"]
14
15
16class DeprecatedTzFormatWarning(Warning):
17    """Warning raised when time zones are parsed from deprecated formats."""
18