Read and parse configuration data from the file or file-like object in
fp (only the readline() method is used). If
filename is omitted and fp has a name attribute,
that is used for filename; the default is "<???>".
Get an option value for the provided section. All the
"%" interpolations are expanded in the return values, based on
the defaults passed into the constructor, as well as the options
vars provided, unless the raw argument is true.
A convenience method which coerces the option in the specified
section to a boolean value. Note that the only accepted values
for the option are "0" and "1", any others will raise
ValueError.
Remove the specified option from the specified section.
If the section does not exist, raise NoSectionError.
If the option existed to be removed, return 1; otherwise return 0.
(New in 1.6)