MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/argparse.py:876–898  ·  view source on GitHub ↗
(self,
                 option_strings,
                 dest,
                 nargs=None,
                 const=None,
                 default=None,
                 type=None,
                 choices=None,
                 required=False,
                 help=None,
                 metavar=None,
                 deprecated=False)

Source from the content-addressed store, hash-verified

874 """
875
876 def __init__(self,
877 option_strings,
878 dest,
879 nargs=None,
880 const=None,
881 default=None,
882 type=None,
883 choices=None,
884 required=False,
885 help=None,
886 metavar=None,
887 deprecated=False):
888 self.option_strings = option_strings
889 self.dest = dest
890 self.nargs = nargs
891 self.const = const
892 self.default = default
893 self.type = type
894 self.choices = choices
895 self.required = required
896 self.help = help
897 self.metavar = metavar
898 self.deprecated = deprecated
899
900 def _get_kwargs(self):
901 names = [

Callers 14

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected