From: Ɓukasz Langa Date: Tue, 1 Jan 2013 23:44:36 +0000 (+0100) Subject: Misc/NEWS updated to tell about #16820 X-Git-Tag: v3.3.1rc1~439^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b83a86a21031ea46fdfbaa53be186a08c6cb16dc;p=thirdparty%2FPython%2Fcpython.git Misc/NEWS updated to tell about #16820 --- diff --git a/Misc/NEWS b/Misc/NEWS index 45c2e3212567..42b84f50cc81 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -189,6 +189,13 @@ 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 #9644: Fix the encoding used by os.statvfs(): use the filesystem encoding with the surrogateescape error handler, instead of UTF-8 in strict mode.