13
13
VERSION = OLSON_VERSION
14
14
# Version format for a patch release - only one so far.
15
15
#VERSION = OLSON_VERSION + '.2'
16
- __version__ = OLSON_VERSION
16
+ __version__ = OLSON_VERSION + "-mpl"
17
17
18
18
OLSEN_VERSION = OLSON_VERSION # Old releases had this misspelling
19
19
@@ -115,7 +115,7 @@ def resource_exists(name):
115
115
# module, as well as the Zope3 i18n package. Perhaps we should just provide
116
116
# the POT file and translations, and leave it up to callers to make use
117
117
# of them.
118
- #
118
+ #
119
119
# t = gettext.translation(
120
120
# 'pytz', os.path.join(os.path.dirname(__file__), 'locales'),
121
121
# fallback=True
@@ -128,7 +128,7 @@ def resource_exists(name):
128
128
_tzinfo_cache = {}
129
129
130
130
def timezone (zone ):
131
- r''' Return a datetime.tzinfo implementation for the given timezone
131
+ r''' Return a datetime.tzinfo implementation for the given timezone
132
132
133
133
>>> from datetime import datetime, timedelta
134
134
>>> utc = timezone('UTC')
@@ -252,7 +252,7 @@ def __str__(self):
252
252
def _UTC ():
253
253
"""Factory function for utc unpickling.
254
254
255
- Makes sure that unpickling a utc instance always returns the same
255
+ Makes sure that unpickling a utc instance always returns the same
256
256
module global.
257
257
258
258
These examples belong in the UTC class above, but it is obscured; or in
@@ -1098,7 +1098,7 @@ def _test():
1098
1098
'Zulu' ]
1099
1099
all_timezones = [
1100
1100
tz for tz in all_timezones if resource_exists (tz )]
1101
-
1101
+
1102
1102
all_timezones_set = set (all_timezones )
1103
1103
common_timezones = \
1104
1104
['Africa/Abidjan' ,
@@ -1533,5 +1533,5 @@ def _test():
1533
1533
'UTC' ]
1534
1534
common_timezones = [
1535
1535
tz for tz in common_timezones if tz in all_timezones ]
1536
-
1536
+
1537
1537
common_timezones_set = set (common_timezones )
0 commit comments