diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-14 03:32:35 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-09-14 03:32:35 (GMT) |
commit | e0add764688a3f3237749e0c2830b669d2c76ca0 (patch) | |
tree | f69c0c5a605892fccf92fb7f25396dfcf2572231 /Doc/library/configparser.rst | |
parent | 56f37aa965e794046dad62ddef2cb63e59e4f357 (diff) | |
download | cpython-e0add764688a3f3237749e0c2830b669d2c76ca0.zip cpython-e0add764688a3f3237749e0c2830b669d2c76ca0.tar.gz cpython-e0add764688a3f3237749e0c2830b669d2c76ca0.tar.bz2 |
#15831: document multiple signatures on different lines. Patch by Chris Jerdonek.
Diffstat (limited to 'Doc/library/configparser.rst')
-rw-r--r-- | Doc/library/configparser.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/configparser.rst b/Doc/library/configparser.rst index 6f0ae6a..c202cf2 100644 --- a/Doc/library/configparser.rst +++ b/Doc/library/configparser.rst @@ -1051,7 +1051,8 @@ ConfigParser Objects *fallback*. - .. method:: items([section], raw=False, vars=None) + .. method:: items(raw=False, vars=None) + items(section, raw=False, vars=None) When *section* is not given, return a list of *section_name*, *section_proxy* pairs, including DEFAULTSECT. |