(self)
| 298 | # Help-formatting methods |
| 299 | # ======================= |
| 300 | def format_help(self): |
| 301 | help = self._root_section.format_help() |
| 302 | if help: |
| 303 | help = self._long_break_matcher.sub('\n\n', help) |
| 304 | help = help.strip('\n') + '\n' |
| 305 | return help |
| 306 | |
| 307 | def _join_parts(self, part_strings): |
| 308 | return ''.join([part |
no outgoing calls
no test coverage detected