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

Fred L. Drake fdrake@users.sourceforge.net
Mon, 01 Oct 2001 14:05:33 -0700


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

Modified Files:
	libxmlrpclib.tex 
Log Message:
Fredrik tells me the truefalse parameter for boolean() is not part of the
public interface, so we can simplify the documentation.


Index: libxmlrpclib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libxmlrpclib.tex,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** libxmlrpclib.tex	2001/10/01 17:03:48	1.4
--- libxmlrpclib.tex	2001/10/01 21:05:30	1.5
***************
*** 220,228 ****
  \subsection{Convenience Functions}
  
! \begin{funcdesc}{boolean}{value\optional{, truefalse}}
! Convert any Python value to one of the XML-RPC Boolean constants.
! The optional second argument supplies a conversion table to be indexed
! by the first argument's Python truth value.  If omitted, the
! \code{True} and \code{False} values defined in this module are used.
  \end{funcdesc}
  
--- 220,226 ----
  \subsection{Convenience Functions}
  
! \begin{funcdesc}{boolean}{value}
! Convert any Python value to one of the XML-RPC Boolean constants,
! \code{True} or \code{False}.
  \end{funcdesc}