Indicate whether the named section is present in the configuration. The DEFAULT section is not acknowledged.
(self, section)
| 717 | self._proxies[section] = SectionProxy(self, section) |
| 718 | |
| 719 | def has_section(self, section): |
| 720 | """Indicate whether the named section is present in the configuration. |
| 721 | |
| 722 | The DEFAULT section is not acknowledged. |
| 723 | """ |
| 724 | return section in self._sections |
| 725 | |
| 726 | def options(self, section): |
| 727 | """Return a list of option names for the given section name.""" |
no outgoing calls