Searched refs:tzfile (Results 1 – 11 of 11) sorted by relevance
96 mv $(TZORIG)/$$tzfile $(TZORIG)/$$tzfile.bak && \97 awk -v DATAFORM=rearguard -f $(TZORIG)/ziguard.awk $(TZORIG)/$$tzfile.bak > $(TZORIG)/$$tzfile; \148 mv $$tzfile $(VANGUARD_DIR)/$$tzfile && \149 awk -v DATAFORM=rearguard -f ziguard.awk $(VANGUARD_DIR)/$$tzfile > $$tzfile; \
9 from dateutil.tz import tzfile as _tzfile17 class tzfile(_tzfile): class34 self.zones = {zf.name: tzfile(tf.extractfile(zf), filename=zf.name)
43 with open(metadata['tzdata_file'], 'rb') as tzfile:45 sha_hasher.update(tzfile.read())
162 - Style improvement to zoneinfo.tzfile that was confusing to static type236 in tz.tzfile objects. Reported by @abalkin (gh issue #128, pr #225)247 - Fixed an issue where tzfile objects were not properly handling dst() and314 - tzfile now correctly handles files containing leapcnt (although the leapcnt572 - Now tzfile will round timezones to full-minutes if necessary,
53 * Timezone (tzinfo) implementations for tzfile(5) format
1367 tzfile examples1370 .. testsetup:: tzfile1373 from dateutil.tz import tzfile, tzutc1375 .. doctest:: tzfile1378 >>> tz = tzfile("/etc/localtime")1381 tzinfo=tzfile('/etc/localtime'))1395 .. doctest:: tzfile1397 >>> tz = tzfile('/usr/share/zoneinfo/EST5EDT')1418 .. doctest:: tzfile1440 .. doctest:: tzfile
374 class tzfile(_tzinfo): class397 super(tzfile, self).__init__()787 if not isinstance(other, tzfile):1451 tz = tzfile(filepath)1462 tz = tzfile(name)1473 tz = tzfile(filepath)
1825 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))1830 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))1838 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))1852 tz.tzfile(BytesIO(b'BadFile'))1856 tzc = tz.tzfile(BytesIO(base64.b64decode(EUROPE_HELSINKI)))1871 tz.tzfile(fileobj)1880 tzc = tz.tzfile(BytesIO(base64.b64decode(NEW_YORK)))2202 tzc = tz.tzfile(BytesIO(base64.b64decode(TZFILE_EST5EDT)))2206 tzc = tz.tzfile(BytesIO(base64.b64decode(EUROPE_HELSINKI)))2210 tzc = tz.tzfile(BytesIO(base64.b64decode(NEW_YORK)))
110 from dateutil.tz import tzfile
538 convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) database to
709 convenient to use the system's zoneinfo (:manpage:`tzfile(5)`) database to