From: Andrew M. Kuchling Date: Thu, 27 Apr 2006 12:35:34 +0000 (+0000) Subject: [Bug #1477102] Add necessary import to example X-Git-Tag: v2.4.4c1~244 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52f2f22a8f31ccc301da49d39cb073ad3f0bae51;p=thirdparty%2FPython%2Fcpython.git [Bug #1477102] Add necessary import to example --- diff --git a/Doc/lib/libxmlrpclib.tex b/Doc/lib/libxmlrpclib.tex index c5422710fcb3..fed685f8e5e7 100644 --- a/Doc/lib/libxmlrpclib.tex +++ b/Doc/lib/libxmlrpclib.tex @@ -318,6 +318,7 @@ function will raise a \exception{Fault} exception. \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")