Lines Matching full:left
94 def wrap(left, text, indent): argument
96 if len(left) >= indent:
97 yield left
98 left = spaces
100 left = (left + spaces)[0:indent]
102 text, width=LINE_WIDTH, initial_indent=left, subsequent_indent=spaces
110 def help_line(left, opt, indent, long): argument
119 for x in wrap(" " + left, right, indent):
194 left = f"--{key}={metavar}"
195 help_line(left, opt, 27, True)
197 left = f"--{key}"
198 help_line(left, opt, 27, False)
201 left = f"--{key}[=CHOICE]"
203 left = f"--{key}=CHOICE"
204 help_line(left, opt, 27, True)