File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -476,9 +476,9 @@ the :meth:`__init__` options:
476
476
... ' bar' : ' y' ,
477
477
... ' baz' : ' z' }
478
478
... })
479
- >>> parser.sections() # doctest: +SKIP
479
+ >>> parser.sections()
480
480
['section1', 'section2', 'section3']
481
- >>> [option for option in parser[' section3' ]] # doctest: +SKIP
481
+ >>> [option for option in parser[' section3' ]]
482
482
['foo', 'bar', 'baz']
483
483
484
484
* *allow_no_value *, default value: ``False ``
@@ -921,7 +921,7 @@ ConfigParser Objects
921
921
providing consistent behavior across the parser: non-string
922
922
keys and values are implicitly converted to strings.
923
923
924
- .. versionchanged :: 3.7
924
+ .. versionchanged :: 3.8
925
925
The default *dict_type * is :class: `dict `, since it now preserves
926
926
insertion order.
927
927
@@ -1199,7 +1199,7 @@ RawConfigParser Objects
1199
1199
names, and values via its unsafe ``add_section `` and ``set `` methods,
1200
1200
as well as the legacy ``defaults= `` keyword argument handling.
1201
1201
1202
- .. versionchanged :: 3.7
1202
+ .. versionchanged :: 3.8
1203
1203
The default *dict_type * is :class: `dict `, since it now preserves
1204
1204
insertion order.
1205
1205
You can’t perform that action at this time.
0 commit comments