[Python-checkins] python/dist/src/Doc/lib libstring.tex,1.48,1.49
nnorwitz@users.sourceforge.net
nnorwitz@users.sourceforge.net
Thu, 10 Apr 2003 15:35:33 -0700
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv20253/Doc/lib
Modified Files:
libstring.tex
Log Message:
Attempt to make all the various string *strip methods the same.
* Doc - add doc for when functions were added
* UserString
* string object methods
* string module functions
'chars' is used for the last parameter everywhere.
These changes will be backported, since part of the changes
have already been made, but they were inconsistent.
Index: libstring.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** libstring.tex 12 Sep 2002 14:16:07 -0000 1.48
--- libstring.tex 10 Apr 2003 22:35:29 -0000 1.49
***************
*** 244,247 ****
--- 244,249 ----
the characters in the string will be stripped from the beginning of
the string this method is called on.
+ \versionchanged[The \var{chars} parameter was added. The \var{chars}
+ parameter cannot be passed in earlier 2.2 versions]{2.2.3}
\end{funcdesc}
***************
*** 252,255 ****
--- 254,259 ----
the characters in the string will be stripped from the end of the
string this method is called on.
+ \versionchanged[The \var{chars} parameter was added. The \var{chars}
+ parameter cannot be passed in 2.2 versions]{2.2.3}
\end{funcdesc}
***************
*** 260,263 ****
--- 264,269 ----
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[The \var{chars} parameter was added. The \var{chars}
+ parameter cannot be passed in 2.2 or 2.2.1]{2.2.2}
\end{funcdesc}