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

Method __init__

Lib/optparse.py:1068–1072  ·  view source on GitHub ↗
(self, parser, title, description=None)

Source from the content-addressed store, hash-verified

1066class OptionGroup (OptionContainer):
1067
1068 def __init__(self, parser, title, description=None):
1069 self.parser = parser
1070 OptionContainer.__init__(
1071 self, parser.option_class, parser.conflict_handler, description)
1072 self.title = title
1073
1074 def _create_option_list(self):
1075 self.option_list = []

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected