# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ C implementation of the zoneinfo module """ class ZoneInfo(tzinfo): def _unpickle(self, key, from_cache): pass def clear_cache(self, only_keys=None): pass def dst(self, dt): """ Retrieve a timedelta representing the amount of DST applied in a zone at the given datetime. """ pass def from_file(self, file_obj, key=None): pass def fromutc(self, object): """ Given a datetime with local time in UTC, retrieve an adjusted datetime in local time. """ pass key = None def no_cache(self, key): pass def tzname(self, dt): """ Retrieve a string containing the abbreviation for the time zone that applies in a zone at a given datetime. """ pass def utcoffset(self, dt): """ Retrieve a timedelta representing the UTC offset in a zone at the given datetime. """ pass __doc__ = 'C implementation of the zoneinfo module' __file__ = '/home/shared/src/ide-arm64/build-files/build-temp/runtimes-release/__os__/linux-arm64/runtime-python3.13/lib/python3.13/lib-dynload/_zoneinfo.cpython-313-aarch64-linux-gnu.so' __loader__ = None __name__ = '_zoneinfo' __package__ = '' __spec__ = None