diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-11-26 14:54:56 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-11-26 14:54:56 (GMT) |
commit | 72452650af812d06796995a25e939e0534bfa0b8 (patch) | |
tree | 6838c76c0b85ca754fde9634f148370f29061541 | |
parent | 4f8f9765766a126ebfff3c81655454821f1ad532 (diff) | |
download | cpython-72452650af812d06796995a25e939e0534bfa0b8.zip cpython-72452650af812d06796995a25e939e0534bfa0b8.tar.gz cpython-72452650af812d06796995a25e939e0534bfa0b8.tar.bz2 |
Add version changed doc for addition of fillchar to ljust/rjust/center
-rw-r--r-- | Doc/lib/libstdtypes.tex | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 9281dac..7feda60 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -549,6 +549,7 @@ Return a copy of the string with only its first character capitalized. \begin{methoddesc}[string]{center}{width\optional{, fillchar}} Return centered in a string of length \var{width}. Padding is done using the specified \var{fillchar} (default is a space). +\versionchanged[Support for the \var{fillchar} argument]{2.4} \end{methoddesc} \begin{methoddesc}[string]{count}{sub\optional{, start\optional{, end}}} @@ -650,6 +651,7 @@ Return the string left justified in a string of length \var{width}. Padding is done using the specified \var{fillchar} (default is a space). The original string is returned if \var{width} is less than \code{len(\var{s})}. +\versionchanged[Support for the \var{fillchar} argument]{2.4} \end{methoddesc} \begin{methoddesc}[string]{lower}{} @@ -689,6 +691,7 @@ Return the string right justified in a string of length \var{width}. Padding is done using the specified \var{fillchar} (default is a space). The original string is returned if \var{width} is less than \code{len(\var{s})}. +\versionchanged[Support for the \var{fillchar} argument]{2.4} \end{methoddesc} \begin{methoddesc}[string]{rstrip}{\optional{chars}} |