diff options
author | Łukasz Langa <lukasz@langa.pl> | 2012-12-31 01:26:11 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2012-12-31 01:26:11 (GMT) |
commit | 641bb6607025689871839cbd275f5e4b5e16f5a4 (patch) | |
tree | 46cb220110773a80b5e3cdfbb8e0e9c2e5138d35 /Lib/configparser.py | |
parent | a2678f3eb640faf9e585f80d4f2f740a25a4fc4b (diff) | |
parent | 97eefc105ef13e1e6fa1fec39a914d83a751e7c7 (diff) | |
download | cpython-641bb6607025689871839cbd275f5e4b5e16f5a4.zip cpython-641bb6607025689871839cbd275f5e4b5e16f5a4.tar.gz cpython-641bb6607025689871839cbd275f5e4b5e16f5a4.tar.bz2 |
Merged fix for #15803 from 3.2 through 3.3
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r-- | Lib/configparser.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py index ea84652..f18b287 100644 --- a/Lib/configparser.py +++ b/Lib/configparser.py @@ -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. |