[Python-checkins] Fix indendation level of versionchanged directive in configparser.items() doc (GH-7543)

Mariatta webhook-mailer at python.org
Fri Jun 8 20:20:08 EDT 2018


https://github.com/python/cpython/commit/4acc140f8d2c905197362d0ffec545a412ab32a7
commit: 4acc140f8d2c905197362d0ffec545a412ab32a7
branch: master
author: Andrés Delfino <adelfino at gmail.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-06-08T17:20:05-07:00
summary:

Fix indendation level of versionchanged directive in configparser.items() doc (GH-7543)

files:
M Doc/library/configparser.rst

diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst
index c9109ebec21d..1e5f25f36919 100644
--- a/Doc/library/configparser.rst
+++ b/Doc/library/configparser.rst
@@ -1091,10 +1091,10 @@ ConfigParser Objects
       given *section*.  Optional arguments have the same meaning as for the
       :meth:`get` method.
 
-   .. versionchanged:: 3.8
-      Items present in *vars* no longer appear in the result.  The previous
-      behaviour mixed actual parser options with variables provided for
-      interpolation.
+      .. versionchanged:: 3.8
+         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)



More information about the Python-checkins mailing list