diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2005-12-04 17:17:46 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2005-12-04 17:17:46 (GMT) |
commit | 47a39b011262be0767165a0b4c1979f3975ef5d8 (patch) | |
tree | 19dcb92aea90e26e277528e5f6f9e1a7cbde649e /Doc | |
parent | 427aedbbd436a3daa27176b2a57b8e402d1ff0e0 (diff) | |
download | cpython-47a39b011262be0767165a0b4c1979f3975ef5d8.zip cpython-47a39b011262be0767165a0b4c1979f3975ef5d8.tar.gz cpython-47a39b011262be0767165a0b4c1979f3975ef5d8.tar.bz2 |
[Bug #1041501] Fix example
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libsimplexmlrpc.tex | 2 |
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() |