mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-08-19 21:03:21 -07:00
Update pytz to 2019.1
This commit is contained in:
parent
eea1cf1d2c
commit
e63606f195
44 changed files with 1514 additions and 738 deletions
|
@ -16,14 +16,14 @@ from pytz.exceptions import AmbiguousTimeError
|
|||
from pytz.exceptions import InvalidTimeError
|
||||
from pytz.exceptions import NonExistentTimeError
|
||||
from pytz.exceptions import UnknownTimeZoneError
|
||||
from pytz.lazy import LazyDict, LazyList, LazySet
|
||||
from pytz.lazy import LazyDict, LazyList, LazySet # noqa
|
||||
from pytz.tzinfo import unpickler, BaseTzInfo
|
||||
from pytz.tzfile import build_tzinfo
|
||||
|
||||
|
||||
# The IANA (nee Olson) database is updated several times a year.
|
||||
OLSON_VERSION = '2018f'
|
||||
VERSION = '2018.6' # pip compatible version number.
|
||||
OLSON_VERSION = '2019a'
|
||||
VERSION = '2019.1' # pip compatible version number.
|
||||
__version__ = VERSION
|
||||
|
||||
OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling
|
||||
|
@ -157,6 +157,9 @@ def timezone(zone):
|
|||
Unknown
|
||||
|
||||
'''
|
||||
if zone is None:
|
||||
raise UnknownTimeZoneError(None)
|
||||
|
||||
if zone.upper() == 'UTC':
|
||||
return utc
|
||||
|
||||
|
@ -166,9 +169,9 @@ def timezone(zone):
|
|||
# All valid timezones are ASCII
|
||||
raise UnknownTimeZoneError(zone)
|
||||
|
||||
zone = _unmunge_zone(zone)
|
||||
zone = _case_insensitive_zone_lookup(_unmunge_zone(zone))
|
||||
if zone not in _tzinfo_cache:
|
||||
if zone in all_timezones_set:
|
||||
if zone in all_timezones_set: # noqa
|
||||
fp = open_resource(zone)
|
||||
try:
|
||||
_tzinfo_cache[zone] = build_tzinfo(zone, fp)
|
||||
|
@ -185,6 +188,11 @@ def _unmunge_zone(zone):
|
|||
return zone.replace('_plus_', '+').replace('_minus_', '-')
|
||||
|
||||
|
||||
def _case_insensitive_zone_lookup(zone):
|
||||
"""case-insensitively matching timezone, else return zone unchanged"""
|
||||
return _all_timezones_lower_to_standard.get(zone.lower()) or zone # noqa
|
||||
|
||||
|
||||
ZERO = datetime.timedelta(0)
|
||||
HOUR = datetime.timedelta(hours=1)
|
||||
|
||||
|
@ -272,6 +280,8 @@ def _UTC():
|
|||
False
|
||||
"""
|
||||
return utc
|
||||
|
||||
|
||||
_UTC.__safe_for_unpickling__ = True
|
||||
|
||||
|
||||
|
@ -282,6 +292,8 @@ def _p(*args):
|
|||
by shortening the path.
|
||||
"""
|
||||
return unpickler(*args)
|
||||
|
||||
|
||||
_p.__safe_for_unpickling__ = True
|
||||
|
||||
|
||||
|
@ -330,7 +342,7 @@ class _CountryTimezoneDict(LazyDict):
|
|||
if line.startswith('#'):
|
||||
continue
|
||||
code, coordinates, zone = line.split(None, 4)[:3]
|
||||
if zone not in all_timezones_set:
|
||||
if zone not in all_timezones_set: # noqa
|
||||
continue
|
||||
try:
|
||||
data[code].append(zone)
|
||||
|
@ -340,6 +352,7 @@ class _CountryTimezoneDict(LazyDict):
|
|||
finally:
|
||||
zone_tab.close()
|
||||
|
||||
|
||||
country_timezones = _CountryTimezoneDict()
|
||||
|
||||
|
||||
|
@ -363,6 +376,7 @@ class _CountryNameDict(LazyDict):
|
|||
finally:
|
||||
zone_tab.close()
|
||||
|
||||
|
||||
country_names = _CountryNameDict()
|
||||
|
||||
|
||||
|
@ -474,6 +488,7 @@ def FixedOffset(offset, _tzinfos={}):
|
|||
|
||||
return info
|
||||
|
||||
|
||||
FixedOffset.__safe_for_unpickling__ = True
|
||||
|
||||
|
||||
|
@ -483,6 +498,7 @@ def _test():
|
|||
import pytz
|
||||
return doctest.testmod(pytz)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
_test()
|
||||
all_timezones = \
|
||||
|
@ -787,6 +803,7 @@ all_timezones = \
|
|||
'Asia/Pontianak',
|
||||
'Asia/Pyongyang',
|
||||
'Asia/Qatar',
|
||||
'Asia/Qostanay',
|
||||
'Asia/Qyzylorda',
|
||||
'Asia/Rangoon',
|
||||
'Asia/Riyadh',
|
||||
|
@ -1081,6 +1098,7 @@ all_timezones = LazyList(
|
|||
tz for tz in all_timezones if resource_exists(tz))
|
||||
|
||||
all_timezones_set = LazySet(all_timezones)
|
||||
_all_timezones_lower_to_standard = dict((tz.lower(), tz) for tz in all_timezones)
|
||||
common_timezones = \
|
||||
['Africa/Abidjan',
|
||||
'Africa/Accra',
|
||||
|
@ -1351,6 +1369,7 @@ common_timezones = \
|
|||
'Asia/Pontianak',
|
||||
'Asia/Pyongyang',
|
||||
'Asia/Qatar',
|
||||
'Asia/Qostanay',
|
||||
'Asia/Qyzylorda',
|
||||
'Asia/Riyadh',
|
||||
'Asia/Sakhalin',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue