Skip to content

Commit 0897e0c

Browse files
authored
bpo-33504: fix wrong "versionchanged" (GH-11712)
1 parent 9f3f093 commit 0897e0c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Doc/library/configparser.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -476,9 +476,9 @@ the :meth:`__init__` options:
476476
... 'bar': 'y',
477477
... 'baz': 'z'}
478478
... })
479-
>>> parser.sections() # doctest: +SKIP
479+
>>> parser.sections()
480480
['section1', 'section2', 'section3']
481-
>>> [option for option in parser['section3']] # doctest: +SKIP
481+
>>> [option for option in parser['section3']]
482482
['foo', 'bar', 'baz']
483483

484484
* *allow_no_value*, default value: ``False``
@@ -921,7 +921,7 @@ ConfigParser Objects
921921
providing consistent behavior across the parser: non-string
922922
keys and values are implicitly converted to strings.
923923

924-
.. versionchanged:: 3.7
924+
.. versionchanged:: 3.8
925925
The default *dict_type* is :class:`dict`, since it now preserves
926926
insertion order.
927927

@@ -1199,7 +1199,7 @@ RawConfigParser Objects
11991199
names, and values via its unsafe ``add_section`` and ``set`` methods,
12001200
as well as the legacy ``defaults=`` keyword argument handling.
12011201

1202-
.. versionchanged:: 3.7
1202+
.. versionchanged:: 3.8
12031203
The default *dict_type* is :class:`dict`, since it now preserves
12041204
insertion order.
12051205

0 commit comments

Comments
 (0)