(self, formatter)
| 1086 | # -- Help-formatting methods --------------------------------------- |
| 1087 | |
| 1088 | def format_help(self, formatter): |
| 1089 | result = formatter.format_heading(self.title) |
| 1090 | formatter.indent() |
| 1091 | result += OptionContainer.format_help(self, formatter) |
| 1092 | formatter.dedent() |
| 1093 | return result |
| 1094 | |
| 1095 | |
| 1096 | class OptionParser (OptionContainer): |