From 0d58e2be0b81c12b0056d458a0480dc525af1abb Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Thu, 26 Aug 2004 00:21:13 +0000 Subject: [PATCH] Minor improvements to the template code. * Add comment bars segregating this code from the rest. * Improve readability of the re pattern with indentation and comments on the same line. * Replace the groupdict() and get() pair with a direct call to group() which does the same thing. --- Lib/string.py | 33 +++++++++++++++------------------ 1 file changed, 15 insertions(+), 18 deletions(-) diff --git a/Lib/string.py b/Lib/string.py index d166f3875e6..9965111144a 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -79,6 +79,7 @@ def maketrans(fromstr, tostr): +#################################################################### import re as _re class Template(unicode): @@ -87,25 +88,20 @@ class Template(unicode): # Search for $$, $identifier, ${identifier}, and any bare $'s pattern = _re.compile(r""" -# Match exactly two $'s -- this is the escape sequence -(?P\${2})| -# Match a $ followed by a Python identifier -\$(?P[_a-z][_a-z0-9]*)| -# Match a $ followed by a brace delimited identifier -\${(?P[_a-z][_a-z0-9]*)}| -# Match any other $'s -(?P\$) -""", _re.IGNORECASE | _re.VERBOSE) + (?P\${2})| # Escape sequence of two $ signs + \$(?P[_a-z][_a-z0-9]*)| # $ and a Python identifier + \${(?P[_a-z][_a-z0-9]*)}| # $ and a brace delimited identifier + (?P\$) # Other ill-formed $ expressions + """, _re.IGNORECASE | _re.VERBOSE) def __mod__(self, mapping): def convert(mo): - groups = mo.groupdict() - if groups.get('escaped') is not None: + if mo.group('escaped') is not None: return '$' - if groups.get('bogus') is not None: + if mo.group('bogus') is not None: raise ValueError('Invalid placeholder at index %d' % mo.start('bogus')) - val = mapping[groups.get('named') or groups.get('braced')] + val = mapping[mo.group('named') or mo.group('braced')] return unicode(val) return self.pattern.sub(convert, self) @@ -121,27 +117,28 @@ class SafeTemplate(Template): def __mod__(self, mapping): def convert(mo): - groups = mo.groupdict() - if groups.get('escaped') is not None: + if mo.group('escaped') is not None: return '$' - if groups.get('bogus') is not None: + if mo.group('bogus') is not None: raise ValueError('Invalid placeholder at index %d' % mo.start('bogus')) - named = groups.get('named') + named = mo.group('named') if named is not None: try: return unicode(mapping[named]) except KeyError: return '$' + named - braced = groups.get('braced') + braced = mo.group('braced') try: return unicode(mapping[braced]) except KeyError: return '${' + braced + '}' return self.pattern.sub(convert, self) +del _re +#################################################################### # NOTE: Everything below here is deprecated. Use string methods instead. # This stuff will go away in Python 3.0.