From: Andrew M. Kuchling Date: Fri, 8 Oct 2004 18:34:47 +0000 (+0000) Subject: [Bug #1041501] Fix example code X-Git-Tag: v2.4b1~72 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=293dc9d70f2267631445917032e4a6550128a706;p=python [Bug #1041501] Fix example code --- diff --git a/Doc/lib/libsimplexmlrpc.tex b/Doc/lib/libsimplexmlrpc.tex index dd486d9cc5..89db62b42d 100644 --- a/Doc/lib/libsimplexmlrpc.tex +++ b/Doc/lib/libsimplexmlrpc.tex @@ -89,7 +89,7 @@ Example: \begin{verbatim} class MyFuncs: - def div(self, x, y) : return div(x,y) + def div(self, x, y) : return x // y server = SimpleXMLRPCServer(("localhost", 8000))