[Python-checkins] python/dist/src/Doc/lib libfuncs.tex, 1.152, 1.153 libstring.tex, 1.52, 1.53

loewis at users.sourceforge.net loewis at users.sourceforge.net
Tue Nov 18 14:48:59 EST 2003


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

Modified Files:
	libfuncs.tex libstring.tex 
Log Message:
Patch #843088: Fix typos. Backported to 2.3.


Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.152
retrieving revision 1.153
diff -C2 -d -r1.152 -r1.153
*** libfuncs.tex	16 Nov 2003 16:17:48 -0000	1.152
--- libfuncs.tex	18 Nov 2003 19:48:57 -0000	1.153
***************
*** 972,976 ****
  \end{funcdesc}
  
! \begin{funcdesc}{super}{type\optional{object-or-type}}
    Return the superclass of \var{type}.  If the second argument is omitted
    the super object returned is unbound.  If the second argument is an
--- 972,976 ----
  \end{funcdesc}
  
! \begin{funcdesc}{super}{type\optional{, object-or-type}}
    Return the superclass of \var{type}.  If the second argument is omitted
    the super object returned is unbound.  If the second argument is an

Index: libstring.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -d -r1.52 -r1.53
*** libstring.tex	16 Jul 2003 05:11:27 -0000	1.52
--- libstring.tex	18 Nov 2003 19:48:57 -0000	1.53
***************
*** 301,308 ****
  \end{funcdesc}
  
! \begin{funcdesc}{replace}{str, old, new\optional{, maxsplit}}
    Return a copy of string \var{str} with all occurrences of substring
    \var{old} replaced by \var{new}.  If the optional argument
!   \var{maxsplit} is given, the first \var{maxsplit} occurrences are
    replaced.
  \end{funcdesc}
--- 301,308 ----
  \end{funcdesc}
  
! \begin{funcdesc}{replace}{str, old, new\optional{, maxreplace}}
    Return a copy of string \var{str} with all occurrences of substring
    \var{old} replaced by \var{new}.  If the optional argument
!   \var{maxreplace} is given, the first \var{maxreplace} occurrences are
    replaced.
  \end{funcdesc}





More information about the Python-checkins mailing list