Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7d580 commit c3db373Copy full SHA for c3db373
1 file changed
Doc/library/xmlrpc.client.rst
@@ -435,7 +435,7 @@ remote server into a single request [#]_.
435
is a :term:`generator`; iterating over this generator yields the individual
436
results.
437
438
-A usage example of this class follows. The server code ::
+A usage example of this class follows. The server code::
439
440
from xmlrpc.server import SimpleXMLRPCServer
441
@@ -449,7 +449,7 @@ A usage example of this class follows. The server code ::
449
return x*y
450
451
def divide(x, y):
452
- return x/y
+ return x // y
453
454
# A simple server with simple arithmetic functions
455
server = SimpleXMLRPCServer(("localhost", 8000))
0 commit comments