diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-03-04 17:44:34 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-03-04 17:44:34 (GMT) |
commit | 614479d93d776a1f344a794f143b3ef6d3d06531 (patch) | |
tree | 1a72e5c909ecd1f4bb9f52a57f36428043355280 /Doc/lib | |
parent | fac559c5334afc8e44cf45555082be1f165a02e6 (diff) | |
download | cpython-614479d93d776a1f344a794f143b3ef6d3d06531.zip cpython-614479d93d776a1f344a794f143b3ef6d3d06531.tar.gz cpython-614479d93d776a1f344a794f143b3ef6d3d06531.tar.bz2 |
SF bug #697220, string.strip implementation/doc mismatch
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libstring.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libstring.tex b/Doc/lib/libstring.tex index 99bb5ee..d84226c 100644 --- a/Doc/lib/libstring.tex +++ b/Doc/lib/libstring.tex @@ -259,6 +259,8 @@ removed. If \var{chars} is omitted or \code{None}, whitespace characters are removed. If given and not \code{None}, \var{chars} 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} \begin{funcdesc}{swapcase}{s} |