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

bwarsaw at projects.sourceforge.net bwarsaw at projects.sourceforge.net
Mon Jan 26 13:40:52 EST 2004


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

Modified Files:
      Tag: release23-maint
	optparse.py 
Log Message:
Backporting revision 1.6:

    don't wrap lines too late by default
    closes SF bug #842213

But I think Fred meant "too long" :)


Index: optparse.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/optparse.py,v
retrieving revision 1.5
retrieving revision 1.5.8.1
diff -C2 -d -r1.5 -r1.5.8.1
*** optparse.py	8 May 2003 01:38:52 -0000	1.5
--- optparse.py	26 Jan 2004 18:40:49 -0000	1.5.8.1
***************
*** 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