From 3673c9e5e7fb46d77f3ba27aa78435deec87a6c3 Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Fri, 8 Oct 2004 18:35:46 +0000 Subject: [PATCH] [Bug #1041501] Fix example code --- Doc/lib/libsimplexmlrpc.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/lib/libsimplexmlrpc.tex b/Doc/lib/libsimplexmlrpc.tex index 44d14f584731..f9afce0e1885 100644 --- a/Doc/lib/libsimplexmlrpc.tex +++ b/Doc/lib/libsimplexmlrpc.tex @@ -84,7 +84,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)) -- 2.47.3