diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-01 21:05:30 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-01 21:05:30 (GMT) |
commit | d90f509b8f3482787eeeae560d9bc1c909a8e857 (patch) | |
tree | 12a861b3c385817a962a5c9086909781da918608 /Doc | |
parent | 1350c07de3baa4ccb1597e194e75d77d0e44cad8 (diff) | |
download | cpython-d90f509b8f3482787eeeae560d9bc1c909a8e857.zip cpython-d90f509b8f3482787eeeae560d9bc1c909a8e857.tar.gz cpython-d90f509b8f3482787eeeae560d9bc1c909a8e857.tar.bz2 |
Fredrik tells me the truefalse parameter for boolean() is not part of the
public interface, so we can simplify the documentation.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libxmlrpclib.tex | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Doc/lib/libxmlrpclib.tex b/Doc/lib/libxmlrpclib.tex index f51f40a..db62206 100644 --- a/Doc/lib/libxmlrpclib.tex +++ b/Doc/lib/libxmlrpclib.tex @@ -219,11 +219,9 @@ triggered the error. \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. +\begin{funcdesc}{boolean}{value} +Convert any Python value to one of the XML-RPC Boolean constants, +\code{True} or \code{False}. \end{funcdesc} \begin{funcdesc}{binary}{data} |