Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 551B

1234567891011121314151617
  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."""