Commit 30574695 authored by Łukasz Langa's avatar Łukasz Langa

Fixes issue #15803: incorrect `ConfigParser.items()` docstring

parent 88339c44
......@@ -99,10 +99,9 @@ ConfigParser -- responsible for parsing a list of
yes, on for True). Returns False or True.
items(section=_UNSET, raw=False, vars=None)
If section is given, return a list of tuples with (section_name,
section_proxy) for each section, including DEFAULTSECT. Otherwise,
return a list of tuples with (name, value) for each option
in the section.
If section is given, return a list of tuples with (name, value) for
each option in the section. Otherwise, return a list of tuples with
(section_name, section_proxy) for each section, including DEFAULTSECT.
remove_section(section)
Remove the given file section and all its options.
......
......@@ -1078,6 +1078,7 @@ Erik Tollerud
Matias Torchinsky
Sandro Tosi
Richard Townsend
Nathan Trapuzzano
Laurence Tratt
John Tromp
Jason Trowbridge
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment