Skip to content

Commit 79876d3

Browse files
author
J. David Ibanez
committed
Improve coding a little
1 parent c9153f1 commit 79876d3

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

GettextTag.py

+3-10
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@
2424
</dtml-gettext>
2525
"""
2626

27-
# Import from the Standard Library
28-
from types import StringType
29-
3027
# Import from Zope
3128
from DocumentTemplate.DT_Util import Eval, ParseError, parse_params, \
3229
InstanceDict, namespace, render_blocks
@@ -47,12 +44,6 @@ def name_or_expr(mapping, name_attr, expr_attr, default):
4744
raise ParseError, ('%s and %s given' % (name_attr, expr_attr), 'calendar')
4845

4946

50-
def get_value(x, md):
51-
if x is None or type(x) is StringType:
52-
return x
53-
else:
54-
return x.eval(md)
55-
5647

5748
class GettextTag:
5849
""" """
@@ -81,7 +72,9 @@ def __init__(self, blocks):
8172

8273
def __call__(self, md):
8374
# In which language, if any?
84-
lang = get_value(self.lang, md)
75+
lang = self.lang
76+
if lang is not None and type(lang) is not str:
77+
lang = lang.eval(md)
8578

8679
# Get the message!!
8780
ns = namespace(md)[0]

LocalContent.py

-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,7 @@
1515
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1616

1717
# Import from the Standard Library
18-
from cgi import escape
19-
from cStringIO import StringIO
2018
from hashlib import md5
21-
from types import StringType, UnicodeType
22-
from xml.sax import make_parser, handler, InputSource
2319

2420
# Import from itools
2521
from itools.datatypes import LanguageTag

LocalPropertyManager.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -303,10 +303,9 @@ def manage_upgrade(self, REQUEST=None, RESPONSE=None):
303303
# The upgrade code below must be activated once the new upgrade
304304
# framework is deployed, something that should happen for the 1.2
305305
# release.
306-
## from types import TupleType
307306
## for k, v in self._local_properties.items():
308307
## for i, j in v.items():
309-
## if type(j) is not TupleType:
308+
## if type(j) is not tuple:
310309
## # XXX add the timestamp for every property
311310
## self._local_properties[k][i] = (j, time())
312311
## self._p_changed = 1

0 commit comments

Comments
 (0)