(self)
| 284 | # Help-formatting methods |
| 285 | # ======================= |
| 286 | def format_help(self): |
| 287 | help = self._root_section.format_help() |
| 288 | if help: |
| 289 | help = self._long_break_matcher.sub('\n\n', help) |
| 290 | help = help.strip('\n') + '\n' |
| 291 | return help |
| 292 | |
| 293 | def _join_parts(self, part_strings): |
| 294 | return ''.join([part |
no test coverage detected