diff options
author | Collin Winter <collinw@gmail.com> | 2007-09-01 23:34:30 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-09-01 23:34:30 (GMT) |
commit | c79461b1648c9209c3652184572a17eef0a76202 (patch) | |
tree | 47c6238c8c47c4881f6f0523ea86d201cea1fc94 /Doc/library/xmlrpclib.rst | |
parent | 2ac012130549b1ef51ebce11148d01eaca1a7033 (diff) | |
download | cpython-c79461b1648c9209c3652184572a17eef0a76202.zip cpython-c79461b1648c9209c3652184572a17eef0a76202.tar.gz cpython-c79461b1648c9209c3652184572a17eef0a76202.tar.bz2 |
Partial py3k-ification of Doc/library/: convert has_key references into either 'k in d' or __contains__; normalize raise statements; convert print statements into print function calls.
Diffstat (limited to 'Doc/library/xmlrpclib.rst')
-rw-r--r-- | Doc/library/xmlrpclib.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/xmlrpclib.rst b/Doc/library/xmlrpclib.rst index d2ed771..3b4dbbd 100644 --- a/Doc/library/xmlrpclib.rst +++ b/Doc/library/xmlrpclib.rst @@ -371,12 +371,12 @@ Example of Client Usage # server = ServerProxy("http://localhost:8000") # local server server = ServerProxy("http://betty.userland.com") - print server + print(server) try: - print server.examples.getStateName(41) + print(server.examples.getStateName(41)) except Error as v: - print "ERROR", v + print("ERROR", v) To access an XML-RPC server through a proxy, you need to define a custom transport. The following example, written by NoboNobo, shows how: @@ -404,5 +404,5 @@ transport. The following example, written by NoboNobo, shows how: p = ProxiedTransport() p.set_proxy('proxy-server:8080') server = xmlrpclib.Server('http://time.xmlrpc.com/RPC2', transport=p) - print server.currentTime.getCurrentTime() + print(server.currentTime.getCurrentTime()) |