summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-01-30 02:16:55 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-01-30 02:16:55 (GMT)
commit757db83dcef95ff71c45261ddba4a9d195a1dcbe (patch)
tree1ac9e6f9a42963da4bac712d6dc4a0a0748aae06 /Doc
parent66da2f37c3d8aa141bbfc9fe3899e36f6488cee9 (diff)
downloadcpython-757db83dcef95ff71c45261ddba4a9d195a1dcbe.zip
cpython-757db83dcef95ff71c45261ddba4a9d195a1dcbe.tar.gz
cpython-757db83dcef95ff71c45261ddba4a9d195a1dcbe.tar.bz2
#7801: fix xmlrpclib binary example, open the picture in binary mode
Use also the with syntax (consistent with python trunk example).
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/xmlrpc.client.rst10
1 files changed, 4 insertions, 6 deletions
diff --git a/Doc/library/xmlrpc.client.rst b/Doc/library/xmlrpc.client.rst
index 52d236e..1bcc423 100644
--- a/Doc/library/xmlrpc.client.rst
+++ b/Doc/library/xmlrpc.client.rst
@@ -283,9 +283,8 @@ XMLRPC::
import xmlrpc.client
def python_logo():
- handle = open("python_logo.jpg")
- return xmlrpc.client.Binary(handle.read())
- handle.close()
+ with open("python_logo.jpg", "rb") as handle:
+ return xmlrpc.client.Binary(handle.read())
server = SimpleXMLRPCServer(("localhost", 8000))
print("Listening on port 8000...")
@@ -298,9 +297,8 @@ The client gets the image and saves it to a file::
import xmlrpc.client
proxy = xmlrpc.client.ServerProxy("http://localhost:8000/")
- handle = open("fetched_python_logo.jpg", "w")
- handle.write(proxy.python_logo().data)
- handle.close()
+ with open("fetched_python_logo.jpg", "wb") as handle:
+ handle.write(proxy.python_logo().data)
.. _fault-objects: