summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libsimplexmlrpc.tex
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-12-04 16:34:40 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-12-04 16:34:40 (GMT)
commit10a16dea7422a578a2d49a778c5aceb54d2126d2 (patch)
tree69a5775c3660c43bf8718426dc61cd0bc55ea91c /Doc/lib/libsimplexmlrpc.tex
parentbc6a1953443deac59dc950f2f2b12c8b0a2e0338 (diff)
downloadcpython-10a16dea7422a578a2d49a778c5aceb54d2126d2.zip
cpython-10a16dea7422a578a2d49a778c5aceb54d2126d2.tar.gz
cpython-10a16dea7422a578a2d49a778c5aceb54d2126d2.tar.bz2
[Patch #893642] Add optional allow_none argument to SimpleXMLRPCServer, CGIXMLRPCRequestHandler
Diffstat (limited to 'Doc/lib/libsimplexmlrpc.tex')
-rw-r--r--Doc/lib/libsimplexmlrpc.tex7
1 files changed, 5 insertions, 2 deletions
diff --git a/Doc/lib/libsimplexmlrpc.tex b/Doc/lib/libsimplexmlrpc.tex
index 00a4694..4d179f6 100644
--- a/Doc/lib/libsimplexmlrpc.tex
+++ b/Doc/lib/libsimplexmlrpc.tex
@@ -13,7 +13,8 @@ be free standing, using \class{SimpleXMLRPCServer}, or embedded in a
CGI environment, using \class{CGIXMLRPCRequestHandler}.
\begin{classdesc}{SimpleXMLRPCServer}{addr\optional{,
- requestHandler\optional{, logRequests}}}
+ requestHandler\optional{,
+ logRequests\optional{allow_none}}}}
Create a new server instance. The \var{requestHandler} parameter
should be a factory for request handler instances; it defaults to
@@ -24,11 +25,13 @@ CGI environment, using \class{CGIXMLRPCRequestHandler}.
setting this parameter to false will turn off logging. This class
provides methods for registration of functions that can be called by
the XML-RPC protocol.
+ \versionchanged[The \var{allow_none} parameter was added]{2.5}
\end{classdesc}
-\begin{classdesc}{CGIXMLRPCRequestHandler}{}
+\begin{classdesc}{CGIXMLRPCRequestHandler}{\optional{allow_none}}
Create a new instance to handle XML-RPC requests in a CGI
environment. \versionadded{2.3}
+ \versionchanged[The \var{allow_none} parameter was added]{2.5}
\end{classdesc}
\begin{classdesc}{SimpleXMLRPCRequestHandler}{}