Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

18 строки
551B

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