(self, text)
| 514 | return parts, pos_start |
| 515 | |
| 516 | def _format_text(self, text): |
| 517 | if '%(prog)' in text: |
| 518 | text = text % dict(prog=self._prog) |
| 519 | text_width = max(self._width - self._current_indent, 11) |
| 520 | indent = ' ' * self._current_indent |
| 521 | return self._fill_text(text, text_width, indent) + '\n\n' |
| 522 | |
| 523 | def _format_action(self, action): |
| 524 | # determine the required width and the entry label |
nothing calls this directly
no test coverage detected