RawConfigParser instances have the following methods:
DEFAULT is not
included in the list.
DEFAULT section is not acknowledged.
import ConfigParser, os
config = ConfigParser.ConfigParser()
config.readfp(open('defaults.cfg'))
config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')])
"1", "yes", "true", and "on",
which cause this method to return True, and "0", "no",
"false", and "off", which cause it to return False. These
string values are checked in a case-insensitive manner. Any other value will
cause it to raise ValueError.
(name, value) pairs for each
option in the given section.
True.
Otherwise return False.