summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2005-12-04 17:17:46 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2005-12-04 17:17:46 (GMT)
commit47a39b011262be0767165a0b4c1979f3975ef5d8 (patch)
tree19dcb92aea90e26e277528e5f6f9e1a7cbde649e
parent427aedbbd436a3daa27176b2a57b8e402d1ff0e0 (diff)
downloadcpython-47a39b011262be0767165a0b4c1979f3975ef5d8.zip
cpython-47a39b011262be0767165a0b4c1979f3975ef5d8.tar.gz
cpython-47a39b011262be0767165a0b4c1979f3975ef5d8.tar.bz2
[Bug #1041501] Fix example
-rw-r--r--Doc/lib/libsimplexmlrpc.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libsimplexmlrpc.tex b/Doc/lib/libsimplexmlrpc.tex
index ad8ccd4..e4ca0ea 100644
--- a/Doc/lib/libsimplexmlrpc.tex
+++ b/Doc/lib/libsimplexmlrpc.tex
@@ -206,7 +206,7 @@ Example:
\begin{verbatim}
class MyFuncs:
- def div(self, x, y) : return div(x,y)
+ def div(self, x, y) : return x // y
handler = CGIXMLRPCRequestHandler()