[Python-checkins] commit of r41592 - python/trunk/Doc/lib/libsimplexmlrpc.tex
andrew.kuchling
python-checkins at python.org
Sun Dec 4 18:17:50 CET 2005
Author: andrew.kuchling
Date: Sun Dec 4 18:17:46 2005
New Revision: 41592
Modified:
python/trunk/Doc/lib/libsimplexmlrpc.tex
Log:
[Bug #1041501] Fix example
Modified: python/trunk/Doc/lib/libsimplexmlrpc.tex
==============================================================================
--- python/trunk/Doc/lib/libsimplexmlrpc.tex (original)
+++ python/trunk/Doc/lib/libsimplexmlrpc.tex Sun Dec 4 18:17:46 2005
@@ -206,7 +206,7 @@
\begin{verbatim}
class MyFuncs:
- def div(self, x, y) : return div(x,y)
+ def div(self, x, y) : return x // y
handler = CGIXMLRPCRequestHandler()
More information about the Python-checkins
mailing list