From: Łukasz Langa Date: Tue, 1 Jan 2013 23:39:59 +0000 (+0100) Subject: Misc/NEWS updated to tell about #14590 and #16820 X-Git-Tag: v3.3.1rc1~440 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=844460d68c98d8805d0e53f917562e0ddabf0795;p=python Misc/NEWS updated to tell about #14590 and #16820 --- diff --git a/Misc/NEWS b/Misc/NEWS index 9b22629ec1..f3df942982 100644 --- 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': {}})``. + - Issue #16819: IDLE method completion now correctly works for bytes literals. - Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy. @@ -840,6 +851,9 @@ Core and Builtins Library ------- +- Issue #14590: configparser now correctly strips inline comments when delimiter + occurs earlier without preceding space. + - Issue #15424: Add a `__sizeof__()` implementation for array objects. Patch by Ludwig Hähne.