[Python-checkins] cpython (3.2): Closes #12036: ConfigParser: Document items() added the vars dictionary to the

lukasz.langa python-checkins at python.org
Mon May 9 18:51:08 CEST 2011


http://hg.python.org/cpython/rev/62e2b74c3bfc
changeset:   69987:62e2b74c3bfc
branch:      3.2
parent:      69984:ff82f912639c
user:        Łukasz Langa <lukasz at langa.pl>
date:        Mon May 09 18:49:42 2011 +0200
summary:
  Closes #12036: ConfigParser: Document items() added the vars dictionary to the result

files:
  Doc/library/configparser.rst |  5 +++++
  1 files changed, 5 insertions(+), 0 deletions(-)


diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -1064,6 +1064,11 @@
       given *section*.  Optional arguments have the same meaning as for the
       :meth:`get` method.
 
+      .. versionchanged:: 3.2
+
+         Items present in *vars* no longer appear in the result. The previous
+         behaviour mixed actual parser options with variables provided for
+         interpolation.
 
    .. method:: set(section, option, value)
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list