(self, key)
| 1040 | self.remove_section(key) |
| 1041 | |
| 1042 | def __contains__(self, key): |
| 1043 | return key == self.default_section or self.has_section(key) |
| 1044 | |
| 1045 | def __len__(self): |
| 1046 | return len(self._sections) + 1 # the default section |
nothing calls this directly
no test coverage detected