[Python-checkins] CVS: python/dist/src/Doc/lib libturtle.tex,1.3,1.4

Fred L. Drake fdrake@users.sourceforge.net
Thu, 15 Nov 2001 12:41:05 -0800


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

Modified Files:
	libturtle.tex 
Log Message:
Clean up the descriptions of multi-signature functions so we do the right
thing in the index.


Index: libturtle.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libturtle.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** libturtle.tex	2000/12/01 15:25:23	1.3
--- libturtle.tex	2001/11/15 20:41:03	1.4
***************
*** 74,86 ****
  
  \begin{funcdesc}{color}{s}
! Set the color by giving a Tk color string.
! \end{funcdesc}
! 
! \begin{funcdesc}{color}{(r, g, b)}
! Set the color by giving a RGB tuple, each between 0 and 1.
! \end{funcdesc}
! 
! \begin{funcdesc}{color}{r, g, b}
! Set the color by giving the RGB components, each between 0 and 1.
  \end{funcdesc}
  
--- 74,84 ----
  
  \begin{funcdesc}{color}{s}
! \funclineni{color}{(r, g, b)}
! \funclineni{color}{r, g, b}
! Set the pen color.  In the first form, the color is specified as a
! Tk color specification as a string.  The second form specifies the
! color as a tuple of the RGB values, each in the range [0..1].  For the
! third form, the color is specified giving the RGB values as three
! separate parameters (each in the range [0..1]).
  \end{funcdesc}
  
***************
*** 110,119 ****
  
  \begin{funcdesc}{goto}{x, y}
! Go to co-ordinates (\var{x}, \var{y}).
! \end{funcdesc}
! 
! \begin{funcdesc}{goto}{(x, y)}
! Go to co-ordinates (\var{x}, \var{y}) (specified as a tuple instead of 
! individually).
  \end{funcdesc}
  
--- 108,114 ----
  
  \begin{funcdesc}{goto}{x, y}
! \funclineni{goto}{(x, y)}
! Go to co-ordinates \var{x}, \var{y}.  The co-ordinates may be
! specified either as two separate arguments or as a 2-tuple.
  \end{funcdesc}