Kaydet (Commit) 4e9e7a61 authored tarafından Fred Drake's avatar Fred Drake

don't wrap lines too late by default

closes SF bug #842213
üst 6d98f198
......@@ -247,7 +247,7 @@ class IndentedHelpFormatter (HelpFormatter):
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)
......@@ -266,7 +266,7 @@ class TitledHelpFormatter (HelpFormatter):
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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment