summaryrefslogtreecommitdiff
path: root/Lib/configparser.py
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2012-12-31 13:55:11 +0100
committerŁukasz Langa <lukasz@langa.pl>2012-12-31 13:55:11 +0100
commit0210194d48569ce136bad4d324ade03767356905 (patch)
tree13597f978bb3323a9d33d937a241ebf0d2d0dcb4 /Lib/configparser.py
parent5da57027efb830f1bb6dfeecade94faee28b21ae (diff)
downloadcpython-git-0210194d48569ce136bad4d324ade03767356905.tar.gz
Fixes `__setitem__` on parser['DEFAULT'] reported in issue #16820.
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r--Lib/configparser.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py
index be1c9f35da..eac508e412 100644
--- a/Lib/configparser.py
+++ b/Lib/configparser.py
@@ -960,7 +960,10 @@ class RawConfigParser(MutableMapping):
# XXX this is not atomic if read_dict fails at any point. Then again,
# no update method in configparser is atomic in this implementation.
- self.remove_section(key)
+ if key == self.default_section:
+ self._defaults.clear()
+ else:
+ self.remove_section(key)
self.read_dict({key: value})
def __delitem__(self, key):