don't wrap lines too late by default
closes SF bug #842213
But I think Fred meant "too long" :)
def __init__ (self,
indent_increment=2,
max_help_position=24,
- width=80,
+ width=79,
short_first=1):
HelpFormatter.__init__(
self, indent_increment, max_help_position, width, short_first)
def __init__ (self,
indent_increment=0,
max_help_position=24,
- width=80,
+ width=79,
short_first=0):
HelpFormatter.__init__ (
self, indent_increment, max_help_position, width, short_first)