Attempt to read and parse an iterable of filenames, returning a list of filenames which were successfully parsed.
read(filenames, encoding=None)
import configparser, os
config = configparser.ConfigParser()
config.read_file(open('defaults.cfg'))
config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')],
encoding='cp1250')