cpython: d5c45089df2d (original) (raw)
Mercurial > cpython
changeset 81213:d5c45089df2d 3.3
Misc/NEWS updated to tell about #14590 and #16820 [#14590]
Łukasz Langa lukasz@langa.pl | |
---|---|
date | Wed, 02 Jan 2013 00:39:59 +0100 |
parents | 2f5320497017 |
children | 0837362f6879 4d28e50f20b8 |
files | Misc/NEWS |
diffstat | 1 files changed, 14 insertions(+), 0 deletions(-)[+] [-] Misc/NEWS 14 |
line wrap: on
line diff
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -124,6 +124,17 @@ Core and Builtins
Library
-------
+- Issue #16820: In configparser, parser.popitem()
no longer raises ValueError.
- This makes
parser.clean()
work correctly. + +- Issue #16820: In configparser,parser['section'] = {}
now preserves - section order within the parser. This makes
parser.update()
preserve section - order as well.
+
+- Issue #16820: In configparser,
parser['DEFAULT'] = {}
now correctly - clears previous values stored in the default section. Same goes for
parser.update({'DEFAULT': {}})
. +