[Python-checkins] CVS: python/dist/src/Doc/lib libstring.tex,1.35,1.36

Fred Drake python-dev@python.org
Mon, 10 Apr 2000 14:35:51 -0400


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory seahag.cnri.reston.va.us:/home/fdrake/projects/python/Doc/lib

Modified Files:
	libstring.tex 
Log Message:

letters:
        Fix description; lowercase and uppercase are strings, not
        functions!  Noted by Randall Hopper <aa8vb@yahoo.com>.

maketrans():
        Minor markup nits in description.


Index: libstring.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** libstring.tex	1999/05/27 17:18:08	1.35
--- libstring.tex	2000/04/10 18:35:49	1.36
***************
*** 22,27 ****
  
  \begin{datadesc}{letters}
!   The concatenation of the strings \function{lowercase()} and
!   \function{uppercase()} described below.
  \end{datadesc}
  
--- 22,27 ----
  
  \begin{datadesc}{letters}
!   The concatenation of the strings \constant{lowercase} and
!   \constant{uppercase} described below.
  \end{datadesc}
  
***************
*** 157,162 ****
    in \var{to}; \var{from} and \var{to} must have the same length.
  
!   \strong{Warning:} don't use strings derived from \code{lowercase}
!   and \code{uppercase} as arguments; in some locales, these don't have
    the same length.  For case conversions, always use
    \function{lower()} and \function{upper()}.
--- 157,162 ----
    in \var{to}; \var{from} and \var{to} must have the same length.
  
!   \strong{Warning:} don't use strings derived from \constant{lowercase}
!   and \constant{uppercase} as arguments; in some locales, these don't have
    the same length.  For case conversions, always use
    \function{lower()} and \function{upper()}.