@@ -995,16 +995,17 @@ ConfigParser Objects
995995
996996 .. method :: read(filenames, encoding=None)
997997
998- Attempt to read and parse a list of filenames, returning a list of
998+ Attempt to read and parse an iterable of filenames, returning a list of
999999 filenames which were successfully parsed.
10001000
10011001 If *filenames * is a string, a :class: `bytes ` object or a
10021002 :term: `path-like object `, it is treated as
10031003 a single filename. If a file named in *filenames * cannot be opened, that
1004- file will be ignored. This is designed so that you can specify a list of
1005- potential configuration file locations (for example, the current
1006- directory, the user's home directory, and some system-wide directory),
1007- and all existing configuration files in the list will be read.
1004+ file will be ignored. This is designed so that you can specify an
1005+ iterable of potential configuration file locations (for example, the
1006+ current directory, the user's home directory, and some system-wide
1007+ directory), and all existing configuration files in the iterable will be
1008+ read.
10081009
10091010 If none of the named files exist, the :class: `ConfigParser `
10101011 instance will contain an empty dataset. An application which requires
0 commit comments