[Python-checkins] cpython (3.3): Misc/NEWS updated to tell about #14590 and #16820
lukasz.langa
python-checkins at python.org
Wed Jan 2 01:03:43 CET 2013
http://hg.python.org/cpython/rev/d5c45089df2d
changeset: 81213:d5c45089df2d
branch: 3.3
parent: 81211:2f5320497017
user: Łukasz Langa <lukasz at langa.pl>
date: Wed Jan 02 00:39:59 2013 +0100
summary:
Misc/NEWS updated to tell about #14590 and #16820
files:
Misc/NEWS | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -124,6 +124,17 @@
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 @@
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.
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list