summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2010-12-03 16:28:00 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2010-12-03 16:28:00 (GMT)
commitb6a6f5f886ed869612e16cd1e29a1190996dc78d (patch)
tree43e86bc6227ab409723a87c9d6ae8448c976f9da /Misc
parentecace28ef4486b3fee598e3854431d3a454e30f8 (diff)
downloadcpython-b6a6f5f886ed869612e16cd1e29a1190996dc78d.zip
cpython-b6a6f5f886ed869612e16cd1e29a1190996dc78d.tar.gz
cpython-b6a6f5f886ed869612e16cd1e29a1190996dc78d.tar.bz2
Issue 10499: Modular interpolation in configparser
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS8
1 files changed, 8 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 13c29cd..0349ef2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -149,6 +149,14 @@ Library
- Issue #10467: Fix BytesIO.readinto() after seeking into a position after the
end of the file.
+- configparser: the ConfigParser class has been deprecated in favor of
+ SafeConfigParser. Usage of RawConfigParser is now discouraged for new
+ projects in favor of SafeConfigParser(interpolation=None).
+
+- Issue #10499: configparser supports pluggable interpolation handlers. New
+ interpolation handler added (ExtendedInterpolation) which supports the syntax
+ used by zc.buildout (e.g. interpolation between sections).
+
- Issue #1682942: configparser supports alternative option/value delimiters.
- Issue #5412: configparser supports mapping protocol access.