[Bug #1041501] Fix example code

This commit is contained in:
Andrew M. Kuchling 2004-10-08 18:34:47 +00:00
parent cebdd3c8f1
commit 293dc9d70f
1 changed files with 1 additions and 1 deletions

View File

@ -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))