# 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): """ 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__ = '/Users/maint/Documents/src/ide/build-files/build-temp/runtimes-release/__os__/macos/runtime-python3.12/lib/Python.framework/Versions/3.12/lib/python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so' __loader__ = None __name__ = '_zoneinfo' __package__ = '' __spec__ = None