Method
__init__
(self,
indent_increment=0,
max_help_position=24,
width=None,
short_first=0)
Source from the content-addressed store, hash-verified
| 377 | """ |
| 378 | |
| 379 | def __init__(self, |
| 380 | indent_increment=0, |
| 381 | max_help_position=24, |
| 382 | width=None, |
| 383 | short_first=0): |
| 384 | HelpFormatter.__init__ ( |
| 385 | self, indent_increment, max_help_position, width, short_first) |
| 386 | |
| 387 | def format_usage(self, usage): |
| 388 | return "%s %s\n" % (self.format_heading(_("Usage")), usage) |
Callers
nothing calls this directly
Tested by
no test coverage detected