[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex,1.96,1.97

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Thu, 13 Jun 2002 17:27:16 -0700


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

Modified Files:
	libstdtypes.tex 
Log Message:
Use \code{True} (or False) instead of true/false.
Not sure if code is correct, but that is what's in this file.
I've seen \constant{True} in other places.


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.96
retrieving revision 1.97
diff -C2 -d -r1.96 -r1.97
*** libstdtypes.tex	11 Jun 2002 10:55:08 -0000	1.96
--- libstdtypes.tex	14 Jun 2002 00:27:13 -0000	1.97
***************
*** 548,553 ****
  
  \begin{methoddesc}[string]{endswith}{suffix\optional{, start\optional{, end}}}
! Return true if the string ends with the specified \var{suffix},
! otherwise return false.  With optional \var{start}, test beginning at
  that position.  With optional \var{end}, stop comparing at that position.
  \end{methoddesc}
--- 548,553 ----
  
  \begin{methoddesc}[string]{endswith}{suffix\optional{, start\optional{, end}}}
! Return \code{True} if the string ends with the specified \var{suffix},
! otherwise return \code{False}.  With optional \var{start}, test beginning at
  that position.  With optional \var{end}, stop comparing at that position.
  \end{methoddesc}
***************
*** 679,684 ****
  \begin{methoddesc}[string]{startswith}{prefix\optional{,
                                         start\optional{, end}}}
! Return true if string starts with the \var{prefix}, otherwise
! return false.  With optional \var{start}, test string beginning at
  that position.  With optional \var{end}, stop comparing string at that
  position.
--- 679,684 ----
  \begin{methoddesc}[string]{startswith}{prefix\optional{,
                                         start\optional{, end}}}
! Return \code{True} if string starts with the \var{prefix}, otherwise
! return \code{False}.  With optional \var{start}, test string beginning at
  that position.  With optional \var{end}, stop comparing string at that
  position.