diff options
author | Eric V. Smith <eric@trueblade.com> | 2015-09-29 10:27:38 -0400 |
---|---|---|
committer | Eric V. Smith <eric@trueblade.com> | 2015-09-29 10:27:38 -0400 |
commit | 85976b14ddb941670ee831ed18b5bc69ca1380ac (patch) | |
tree | bd300f6ae190564bfba85049854ed8ea9ab6ab9c /Lib/string.py | |
parent | b8b951f6ee349f6e808f67f0424e71d91802223b (diff) | |
download | cpython-git-85976b14ddb941670ee831ed18b5bc69ca1380ac.tar.gz |
Fixed issue #25034: Fix string.Formatter problem with auto-numbering
and nested format_specs. Patch by Anthon van der Neut.
Diffstat (limited to 'Lib/string.py')
-rw-r--r-- | Lib/string.py | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Lib/string.py b/Lib/string.py index a4c48b2837..ef0787f52b 100644 --- a/Lib/string.py +++ b/Lib/string.py @@ -185,7 +185,7 @@ class Formatter: def vformat(self, format_string, args, kwargs): used_args = set() - result = self._vformat(format_string, args, kwargs, used_args, 2) + result, _ = self._vformat(format_string, args, kwargs, used_args, 2) self.check_unused_args(used_args, args, kwargs) return result @@ -232,14 +232,15 @@ class Formatter: obj = self.convert_field(obj, conversion) # expand the format spec, if needed - format_spec = self._vformat(format_spec, args, kwargs, - used_args, recursion_depth-1, - auto_arg_index=auto_arg_index) + format_spec, auto_arg_index = self._vformat( + format_spec, args, kwargs, + used_args, recursion_depth-1, + auto_arg_index=auto_arg_index) # format the object and append to the result result.append(self.format_field(obj, format_spec)) - return ''.join(result) + return ''.join(result), auto_arg_index def get_value(self, key, args, kwargs): |