Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3ad12c2e
Commit
3ad12c2e
authored
Jun 20, 2013
by
Andrew Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Closes #18267: use floor division in code example
parent
92300583
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Doc/library/xmlrpc.client.rst
Doc/library/xmlrpc.client.rst
+2
-2
No files found.
Doc/library/xmlrpc.client.rst
View file @
3ad12c2e
...
...
@@ -435,7 +435,7 @@ remote server into a single request [#]_.
is a :term:`generator`; iterating over this generator yields the individual
results.
A usage example of this class follows. The server code
::
A usage example of this class follows. The server code::
from xmlrpc.server import SimpleXMLRPCServer
...
...
@@ -449,7 +449,7 @@ A usage example of this class follows. The server code ::
return x*y
def divide(x, y):
return x
/
y
return x
//
y
# A simple server with simple arithmetic functions
server = SimpleXMLRPCServer(("localhost", 8000))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment