(self, heading)
| 259 | # ======================== |
| 260 | |
| 261 | def start_section(self, heading): |
| 262 | self._indent() |
| 263 | section = self._Section(self, self._current_section, heading) |
| 264 | self._add_item(section.format_help, []) |
| 265 | self._current_section = section |
| 266 | |
| 267 | def end_section(self): |
| 268 | self._current_section = self._current_section.parent |
no test coverage detected