(self, text, width, indent)
| 99 | """ |
| 100 | # Modified to dedent text. |
| 101 | def _fill_text(self, text, width, indent): |
| 102 | return argparse.RawDescriptionHelpFormatter._fill_text(self, dedent(text), width, indent) |
| 103 | |
| 104 | # Modified to wrap argument placeholders in <> where necessary. |
| 105 | def _format_action_invocation(self, action): |