(self, text, width, indent)
| 67 | """ |
| 68 | # Modified to dedent text. |
| 69 | def _fill_text(self, text, width, indent): |
| 70 | return argparse.RawDescriptionHelpFormatter._fill_text(self, dedent(text), width, indent) |
| 71 | |
| 72 | # Modified to wrap argument placeholders in <> where necessary. |
| 73 | def _format_action_invocation(self, action): |