MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/optparse.py:379–385  ·  view source on GitHub ↗
(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

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected