def _split_lines(self, text, width):
text = re.sub(man_format_remove, '', text)
# this is the RawTextHelpFormatter._split_lines
if text.startswith('R|'):
return text[2:].splitlines()
return argparse.HelpFormatter._split_lines(self, text, width)
评论列表
文章目录