Delete a section
(self, name)
| 191 | return name in self._structure |
| 192 | |
| 193 | def delete_section(self, name): |
| 194 | """Delete a section""" |
| 195 | del self._structure[name] |
| 196 | |
| 197 | def flush_structure(self): |
| 198 | """Flushes a doc structure to a ReSTructed string |
no outgoing calls
no test coverage detected