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