示例#1
0
 def __init__(self,
              indent_increment=1,
              max_help_position=48,
              width=200,
              short_first=1):
     HelpFormatter.__init__(self, indent_increment, max_help_position,
                            width, short_first)
示例#2
0
 def __init__(self,
              indent_increment=0,
              max_help_position=24,
              width=None,
              short_first=1):
     HelpFormatter.__init__(self, indent_increment, max_help_position,
                            width, short_first)
示例#3
0
 def __init__ (self,
               indent_increment=0,
               max_help_position=24,
               width=79,
               short_first=0):
     HelpFormatter.__init__ (
         self, indent_increment, max_help_position, width, short_first)
示例#4
0
 def __init__(self,
              indent_increment=1,
              max_help_position=48,
              width=200,
              short_first=1):
     HelpFormatter.__init__ (
         self, indent_increment, max_help_position, width, short_first)
示例#5
0
 def __init__(
     self,
     indent_increment: int = 0,
     max_help_position: int = 24,
     width: int = 79,
     short_first: int = 0,
 ) -> None:
     HelpFormatter.__init__(self, indent_increment, max_help_position, width, short_first)
示例#6
0
 def __init__(self,
        indent_increment=2,
        max_help_position=24,
        width=None,
        short_first=1):
   HelpFormatter.__init__(
     self, indent_increment, max_help_position, width, short_first)
   self._dl_open = False
示例#7
0
 def __init__(self, *args, **kwargs):
     HelpFormatter.__init__(self, *args, **kwargs)
     self.help_position = 0
示例#8
0
 def __init__(self, *args, **kwargs):
     HelpFormatter.__init__(self, *args, **kwargs)
     self.help_position = 0