summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-07-28 13:13:46 (GMT)
committerGeorg Brandl <georg@python.org>2010-07-28 13:13:46 (GMT)
commit96a60ae90c291d94c058c80351fa38b6d73eda92 (patch)
tree68b74d560f5ff935e337ad620636624b203e00ac /Misc/NEWS
parentcbb0ae4a428bae3f5c29a1f8974121bb195299ef (diff)
downloadcpython-96a60ae90c291d94c058c80351fa38b6d73eda92.zip
cpython-96a60ae90c291d94c058c80351fa38b6d73eda92.tar.gz
cpython-96a60ae90c291d94c058c80351fa38b6d73eda92.tar.bz2
#1682942: add some ConfigParser features: alternate delimiters, alternate comments, empty lines in values. Also enhance the docs with more examples and mention SafeConfigParser before ConfigParser. Patch by Lukas Langa, review by myself, Eric and Ezio.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 27b3260..5850f08 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -475,6 +475,9 @@ C-API
Library
-------
+- Issue #1682942: Improvements to configparser: support alternate
+ delimiters, alternate comment prefixes and empty lines in values.
+
- Issue #9354: Provide getsockopt() in asyncore's file_wrapper.
- Issue #8966: ctypes: Remove implicit bytes-unicode conversion.