diff -r 12c062dbe746 -r 6b3a5c8e6617 Lib/configparser.py --- a/Lib/configparser.py Thu Aug 16 22:18:37 2012 +0200 +++ b/Lib/configparser.py Thu Aug 23 00:18:09 2012 -0400 @@ -99,10 +99,9 @@ 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.