summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2013-01-01 23:44:36 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2013-01-01 23:44:36 (GMT)
commitb83a86a21031ea46fdfbaa53be186a08c6cb16dc (patch)
treef2502741253b4b385de8323326285e588705ef32
parenta2e7acd17d64cfef3f502473c3b56db8cce24234 (diff)
downloadcpython-b83a86a21031ea46fdfbaa53be186a08c6cb16dc.zip
cpython-b83a86a21031ea46fdfbaa53be186a08c6cb16dc.tar.gz
cpython-b83a86a21031ea46fdfbaa53be186a08c6cb16dc.tar.bz2
Misc/NEWS updated to tell about #16820
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 45c2e32..42b84f5 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.