# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ C implementation of the zoneinfo module """ class ZoneInfo(tzinfo): def _unpickle(self): """ Private method used in unpickling. """ pass def clear_cache(self): """ Clear the ZoneInfo cache. """ pass def dst(self): """ Retrieve a timedelta representing the amount of DST applied in a zone at the given datetime. """ pass def from_file(self): """ Create a ZoneInfo file from a file object. """ 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): """ Get a new instance of ZoneInfo, bypassing the cache. """ pass def tzname(self): """ Retrieve a string containing the abbreviation for the time zone that applies in a zone at a given datetime. """ pass def utcoffset(self): """ Retrieve a timedelta representing the UTC offset in a zone at the given datetime. """ pass __doc__ = 'C implementation of the zoneinfo module' __file__ = '/Users/Shared/build/ide/build-files/build-temp/runtimes-release/__os__/macos/runtime-python3.10/lib/Python.framework/Versions/3.10/lib/python3.10/lib-dynload/_zoneinfo.cpython-310-darwin.so' __loader__ = None __name__ = '_zoneinfo' __package__ = '' __spec__ = None