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

Method __init__

Lib/optparse.py:360–366  ·  view source on GitHub ↗
(self,
                 indent_increment=2,
                 max_help_position=24,
                 width=None,
                 short_first=1)

Source from the content-addressed store, hash-verified

358 """
359
360 def __init__(self,
361 indent_increment=2,
362 max_help_position=24,
363 width=None,
364 short_first=1):
365 HelpFormatter.__init__(
366 self, indent_increment, max_help_position, width, short_first)
367
368 def format_usage(self, usage):
369 return _("Usage: %s\n") % usage

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected