[Python-checkins] python/dist/src/Lib optparse.py,1.5,1.6

fdrake at projects.sourceforge.net fdrake at projects.sourceforge.net
Mon Jan 26 11:42:36 EST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14137

Modified Files:
	optparse.py 
Log Message:
don't wrap lines too late by default
closes SF bug #842213


Index: optparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/optparse.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** optparse.py	8 May 2003 01:38:52 -0000	1.5
--- optparse.py	26 Jan 2004 16:42:30 -0000	1.6
***************
*** 248,252 ****
                    indent_increment=2,
                    max_help_position=24,
!                   width=80,
                    short_first=1):
          HelpFormatter.__init__(
--- 248,252 ----
                    indent_increment=2,
                    max_help_position=24,
!                   width=79,
                    short_first=1):
          HelpFormatter.__init__(
***************
*** 267,271 ****
                    indent_increment=0,
                    max_help_position=24,
!                   width=80,
                    short_first=0):
          HelpFormatter.__init__ (
--- 267,271 ----
                    indent_increment=0,
                    max_help_position=24,
!                   width=79,
                    short_first=0):
          HelpFormatter.__init__ (




More information about the Python-checkins mailing list