1313VERSION = OLSON_VERSION
1414# Version format for a patch release - only one so far.
1515#VERSION = OLSON_VERSION + '.2'
16- __version__ = OLSON_VERSION
16+ __version__ = OLSON_VERSION + "-mpl"
1717
1818OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling
1919
@@ -115,7 +115,7 @@ def resource_exists(name):
115115# module, as well as the Zope3 i18n package. Perhaps we should just provide
116116# the POT file and translations, and leave it up to callers to make use
117117# of them.
118- #
118+ #
119119# t = gettext.translation(
120120# 'pytz', os.path.join(os.path.dirname(__file__), 'locales'),
121121# fallback=True
@@ -128,7 +128,7 @@ def resource_exists(name):
128128_tzinfo_cache = {}
129129
130130def timezone (zone ):
131- r''' Return a datetime.tzinfo implementation for the given timezone
131+ r''' Return a datetime.tzinfo implementation for the given timezone
132132
133133 >>> from datetime import datetime, timedelta
134134 >>> utc = timezone('UTC')
@@ -252,7 +252,7 @@ def __str__(self):
252252def _UTC ():
253253 """Factory function for utc unpickling.
254254
255- Makes sure that unpickling a utc instance always returns the same
255+ Makes sure that unpickling a utc instance always returns the same
256256 module global.
257257
258258 These examples belong in the UTC class above, but it is obscured; or in
@@ -1098,7 +1098,7 @@ def _test():
10981098 'Zulu' ]
10991099all_timezones = [
11001100 tz for tz in all_timezones if resource_exists (tz )]
1101-
1101+
11021102all_timezones_set = set (all_timezones )
11031103common_timezones = \
11041104['Africa/Abidjan' ,
@@ -1533,5 +1533,5 @@ def _test():
15331533 'UTC' ]
15341534common_timezones = [
15351535 tz for tz in common_timezones if tz in all_timezones ]
1536-
1536+
15371537common_timezones_set = set (common_timezones )
0 commit comments