[Python-checkins] python/dist/src/Doc/lib libstring.tex,1.45.8.4,1.45.8.5
nnorwitz@users.sourceforge.net
nnorwitz@users.sourceforge.net
2003年4月11日 11:21:47 -0700
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv16801/Doc/lib
Modified Files:
Tag: release22-maint
libstring.tex
Log Message:
Backport:
Fix SF bug #697220, string.strip implementation/doc mismatch
Attempt to make all the various string/unicode *strip methods the same.
* Doc - add doc for when functions were added
* UserString
* string/unicode object methods
* string module functions
'chars' is used for the last parameter everywhere.
Index: libstring.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.45.8.4
retrieving revision 1.45.8.5
diff -C2 -d -r1.45.8.4 -r1.45.8.5
*** libstring.tex 4 Mar 2003 17:44:34 -0000 1.45.8.4
--- libstring.tex 11 Apr 2003 18:21:09 -0000 1.45.8.5
***************
*** 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 earlier 2.2 versions]{2.2.3}
\end{funcdesc}
***************
*** 261,265 ****
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}
--- 265,269 ----
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 earlier 2.2 versions]{2.2.3}
\end{funcdesc}