File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments