From: Guido van Rossum Date: Sat, 30 Jan 1999 04:35:47 +0000 (+0000) Subject: From: Mike Orr X-Git-Tag: v1.5.2b2~191 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0780ac8f3a3358f7f7e49a6721421691309d88c;p=thirdparty%2FPython%2Fcpython.git From: Mike Orr 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. --- diff --git a/Lib/ConfigParser.py b/Lib/ConfigParser.py index 2116dcabf3eb..bc646e41e2bc 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)