[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex,1.80.6.15,1.80.6.16

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Fri, 15 Nov 2002 16:45:18 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv5518

Modified Files:
      Tag: release22-maint
	libstdtypes.tex 
Log Message:
Note that str.zfill() and the optional argument to str.strip(),
.lstrip(), and .rstrip() were all added in 2.2.2.  ;-(
Closes SF bug #639170.


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.80.6.15
retrieving revision 1.80.6.16
diff -C2 -d -r1.80.6.15 -r1.80.6.16
*** libstdtypes.tex	25 Oct 2002 16:56:16 -0000	1.80.6.15
--- libstdtypes.tex	16 Nov 2002 00:45:14 -0000	1.80.6.16
***************
*** 624,627 ****
--- 624,628 ----
  the characters in the string will be stripped from the beginning of
  the string this method is called on.
+ \versionchanged[Support for the \var{chars} argument]{2.2.2}
  \end{methoddesc}
  
***************
*** 657,660 ****
--- 658,662 ----
  the characters in the string will be stripped from the end of the
  string this method is called on.
+ \versionchanged[Support for the \var{chars} argument]{2.2.2}
  \end{methoddesc}
  
***************
*** 686,689 ****
--- 688,692 ----
  must be a string; the characters in the string will be stripped from
  the both ends of the string this method is called on.
+ \versionchanged[Support for the \var{chars} argument]{2.2.2}
  \end{methoddesc}
  
***************
*** 713,716 ****
--- 716,720 ----
  of length \var{width}. The original string is returned if
  \var{width} is less than \code{len(\var{s})}.
+ \versionadded{2.2.2}
  \end{methoddesc}