__init__.py 444 B

123456789101112
  1. # -*- coding: utf-8 -*-
  2. from .tz import *
  3. from .tz import __doc__
  4. __all__ = ["tzutc", "tzoffset", "tzlocal", "tzfile", "tzrange",
  5. "tzstr", "tzical", "tzwin", "tzwinlocal", "gettz",
  6. "enfold", "datetime_ambiguous", "datetime_exists",
  7. "resolve_imaginary", "UTC", "DeprecatedTzFormatWarning"]
  8. class DeprecatedTzFormatWarning(Warning):
  9. """Warning raised when time zones are parsed from deprecated formats."""