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