diff options
author | Guido van Rossum <guido@python.org> | 1999-01-30 04:35:47 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-30 04:35:47 +0000 |
commit | 32ccbd6e8a9fbea053b1528afcca7b9eb5b68a8c (patch) | |
tree | c2667daa93552dcc343d2b70e8c37ff4aadb53bd /Lib | |
parent | fb2511c4f7825d859f2b4bbcc5b0d73d01ba9982 (diff) | |
download | cpython-32ccbd6e8a9fbea053b1528afcca7b9eb5b68a8c.tar.gz |
From: Mike Orr <mso@oz.net>
In the docstring of ConfigParser.py (Python 1.5.2b1):
read(*filenames) -- read and parse the list of named configuration files
should be:
read(filenames) -- read and parse the list of named configuration files
The method accepts a list, not a bunch of positional arguments.
Which is good, the list is much more convenient.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/ConfigParser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 2116dcabf3..bc646e41e2 100644 --- a/Lib/ConfigParser.py +++ b/Lib/ConfigParser.py @@ -36,7 +36,7 @@ ConfigParser -- responsible for for parsing a list of options(section) return list of configuration options for the named section - read(*filenames) + read(filenames) read and parse the list of named configuration files get(section, option, raw=0, vars=None) |