From 1d4a733cceee237f0850b7887c2945dee707da27 Mon Sep 17 00:00:00 2001 From: Chris Bradbury Date: Mon, 23 Apr 2018 20:16:17 +0100 Subject: bpo-33251: Prevent ConfigParser.items returning items present in vars. (#6446) * bpo-33251: ConfigParser.items no longer returns items present in vars. Documentation for `ConfigParser.items()` states: 'Items present in vars no longer appear in the result.' This fix aligns behaviour to that specified in the documentation. --- Lib/configparser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Lib/configparser.py') diff --git a/Lib/configparser.py b/Lib/configparser.py index 33dc9b9046..a681d3990e 100644 --- a/Lib/configparser.py +++ b/Lib/configparser.py @@ -846,6 +846,7 @@ class RawConfigParser(MutableMapping): except KeyError: if section != self.default_section: raise NoSectionError(section) + orig_keys = list(d.keys()) # Update with the entry specific variables if vars: for key, value in vars.items(): @@ -854,7 +855,7 @@ class RawConfigParser(MutableMapping): section, option, d[option], d) if raw: value_getter = lambda option: d[option] - return [(option, value_getter(option)) for option in d.keys()] + return [(option, value_getter(option)) for option in orig_keys] def popitem(self): """Remove a section from the parser and return it as -- cgit v1.2.1