[Python-checkins] CVS: python/dist/src/Doc/lib libstdtypes.tex,1.37,1.38 libstring.tex,1.39,1.40 libundoc.tex,1.76,1.77

Fred L. Drake python-dev@python.org
Wed, 20 Sep 2000 22:25:33 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28562

Modified Files:
	libstdtypes.tex libstring.tex libundoc.tex 
Log Message:

Fixed a number of small problems reported by Detlef Lannert
<lannert@uni-duesseldorf.de>.


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** libstdtypes.tex	2000/09/20 04:48:20	1.37
--- libstdtypes.tex	2000/09/21 05:25:30	1.38
***************
*** 328,332 ****
  enclosing parentheses, e.g., \code{a, b, c} or \code{()}.  A single
  item tuple must have a trailing comma, e.g., \code{(d,)}.  Buffers are
! not directly support by Python syntax, but can created by calling the
  builtin function \function{buffer()}.\bifuncindex{buffer}  XRanges
  objects are similar to buffers in that there is no specific syntax to
--- 328,332 ----
  enclosing parentheses, e.g., \code{a, b, c} or \code{()}.  A single
  item tuple must have a trailing comma, e.g., \code{(d,)}.  Buffers are
! not directly supported by Python syntax, but can be created by calling the
  builtin function \function{buffer()}.\bifuncindex{buffer}  XRanges
  objects are similar to buffers in that there is no specific syntax to

Index: libstring.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstring.tex,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** libstring.tex	2000/09/18 16:48:13	1.39
--- libstring.tex	2000/09/21 05:25:30	1.40
***************
*** 92,101 ****
    of the string (after stripping the sign): \samp{0x} or \samp{0X}
    means 16, \samp{0} means 8, anything else means 10.  If \var{base}
!   is 16, a leading \samp{0x} or \samp{0X} is always accepted.  Note
!   that when invoked without \var{base} or with \var{base} set to 10,
!   this behaves identical to the built-in function \function{int()}
!   when passed a string.  (Also note: for a more flexible
!   interpretation of numeric literals, use the built-in function
!   \function{eval()}\bifuncindex{eval}.)
  \end{funcdesc}
  
--- 92,100 ----
    of the string (after stripping the sign): \samp{0x} or \samp{0X}
    means 16, \samp{0} means 8, anything else means 10.  If \var{base}
!   is 16, a leading \samp{0x} or \samp{0X} is always accepted, though
!   not required.  This behaves identically to the built-in function
!   \function{int()} when passed a string.  (Also note: for a more
!   flexible interpretation of numeric literals, use the built-in
!   function \function{eval()}\bifuncindex{eval}.)
  \end{funcdesc}
  

Index: libundoc.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libundoc.tex,v
retrieving revision 1.76
retrieving revision 1.77
diff -C2 -r1.76 -r1.77
*** libundoc.tex	2000/09/11 05:23:25	1.76
--- libundoc.tex	2000/09/21 05:25:30	1.77
***************
*** 167,172 ****
  
  
! The following modules are obsolete, but are likely re-surface as tools
! or scripts.
  
  \begin{description}
--- 167,172 ----
  
  
! The following modules are obsolete, but are likely to re-surface as
! tools or scripts:
  
  \begin{description}