Return True if option is removed from section, else False. False if either section does not exist or did not have option.
(self, section, option)
| 99 | return True |
| 100 | |
| 101 | def RemoveOption(self, section, option): |
| 102 | """Return True if option is removed from section, else False. |
| 103 | |
| 104 | False if either section does not exist or did not have option. |
| 105 | """ |
| 106 | if self.has_section(section): |
| 107 | return self.remove_option(section, option) |
| 108 | return False |
| 109 | |
| 110 | def AddSection(self, section): |
| 111 | "If section doesn't exist, add it." |