summaryrefslogtreecommitdiffstats
path: root/Lib/configparser.py
diff options
context:
space:
mode:
authorŁukasz Langa <lukasz@langa.pl>2012-12-31 01:25:28 (GMT)
committerŁukasz Langa <lukasz@langa.pl>2012-12-31 01:25:28 (GMT)
commit97eefc105ef13e1e6fa1fec39a914d83a751e7c7 (patch)
tree4b0e5e7cf7b949594820390ffa61e2c51c57965f /Lib/configparser.py
parent0811f98e103f87b0b268948f56df55852e6fdf29 (diff)
parent30574695067f948c2ee40d44c06d71e16c6b90f9 (diff)
downloadcpython-97eefc105ef13e1e6fa1fec39a914d83a751e7c7.zip
cpython-97eefc105ef13e1e6fa1fec39a914d83a751e7c7.tar.gz
cpython-97eefc105ef13e1e6fa1fec39a914d83a751e7c7.tar.bz2
Merged fix for #15803 from 3.2
Diffstat (limited to 'Lib/configparser.py')
-rw-r--r--Lib/configparser.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Lib/configparser.py b/Lib/configparser.py
index 9d5f779..66ba60d 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.