[Python-checkins] r45752 - python/branches/release24-maint/Doc/lib/libxmlrpclib.tex

andrew.kuchling python-checkins at python.org
Thu Apr 27 14:35:35 CEST 2006


Author: andrew.kuchling
Date: Thu Apr 27 14:35:34 2006
New Revision: 45752

Modified:
   python/branches/release24-maint/Doc/lib/libxmlrpclib.tex
Log:
[Bug #1477102] Add necessary import to example

Modified: python/branches/release24-maint/Doc/lib/libxmlrpclib.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libxmlrpclib.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libxmlrpclib.tex	Thu Apr 27 14:35:34 2006
@@ -318,6 +318,7 @@
 
 \begin{verbatim}
 # simple test program (from the XML-RPC specification)
+from xmlrpclib import ServerProxy
 
 # server = ServerProxy("http://localhost:8000") # local server
 server = ServerProxy("http://betty.userland.com")


More information about the Python-checkins mailing list