python click help formatting newline
问题 I am seeing that a newline is not being preserved in my EPILOG? I want to know why if I see that newline remains only when a line has 74 characters? # http://click.pocoo.org/5/commands/ import click, sys def main_caller(*args, **kwargs): print('act on arguments', args, kwargs) EPILOG = ''' # oneline # twoline \n # oneline with 74char x # twoline with 74char x ''' @click.group(help='wwwwwwwwww', epilog=EPILOG, invoke_without_command=True, chain=True) @click.argument('start_or_stop') @click