diff options
author | Raymond Hettinger <python@rcn.com> | 2004-09-14 02:34:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-09-14 02:34:08 (GMT) |
commit | 6d191113a6c24c5a5c1cd8ade63f5a8f7027b1f4 (patch) | |
tree | 098a5dafc4215acc8bcb4e07f762b92552ab98ff /Lib/string.py | |
parent | 23f1241dc6495eb255e1a389aef204a3e35a2632 (diff) | |
download | cpython-6d191113a6c24c5a5c1cd8ade63f5a8f7027b1f4.zip cpython-6d191113a6c24c5a5c1cd8ade63f5a8f7027b1f4.tar.gz cpython-6d191113a6c24c5a5c1cd8ade63f5a8f7027b1f4.tar.bz2 |
Fix small bugs in Template code.
* The parameterization of "delimiter" was incomplete.
* safe_substitute's code for braced delimiters should only be executed
when braced is not None.
* Invalid pattern group names now raise a ValueError. Formerly, the
convert code would fall off the end and improperly return None.
Beefed-up tests.
* Test delimiter override for all paths in substitute and safe_substitute.
* Alter unittest invocation to match other modules (now it itemizes the
tests as they are run).
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/Lib/string.py b/Lib/string.py index 8cbf573..e5afa9b 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -152,6 +152,7 @@ class Template: mapping = _multimap(kws, args[0]) else: mapping = args[0] + delimiter = self.delimiter[-1] # Helper function for .sub() def convert(mo): # Check the most common path first. @@ -162,9 +163,10 @@ class Template: # fail if val is a Unicode containing non-ASCII characters. return '%s' % val if mo.group('escaped') is not None: - return '$' + return delimiter if mo.group('invalid') is not None: self._invalid(mo) + raise ValueError('Unrecognized named group in pattern', pattern) return self.pattern.sub(convert, self.template) def safe_substitute(self, *args, **kws): @@ -176,6 +178,7 @@ class Template: mapping = _multimap(kws, args[0]) else: mapping = args[0] + delimiter = self.delimiter[-1] # Helper function for .sub() def convert(mo): named = mo.group('named') @@ -185,16 +188,18 @@ class Template: # will fail if val is a Unicode containing non-ASCII return '%s' % mapping[named] except KeyError: - return '$' + named + return delimiter + named braced = mo.group('braced') - try: - return '%s' % mapping[braced] - except KeyError: - return '${' + braced + '}' + if braced is not None: + try: + return '%s' % mapping[braced] + except KeyError: + return delimiter + '{' + braced + '}' if mo.group('escaped') is not None: - return '$' + return delimiter if mo.group('invalid') is not None: self._invalid(mo) + raise ValueError('Unrecognized named group in pattern', pattern) return self.pattern.sub(convert, self.template) |