summaryrefslogtreecommitdiffstats
path: root/Lib/xmlrpclib.py
diff options
context:
space:
mode:
authorFredrik Lundh <fredrik@pythonware.com>2001-08-23 20:04:33 (GMT)
committerFredrik Lundh <fredrik@pythonware.com>2001-08-23 20:04:33 (GMT)
commit78eedce3ffabc0c8d5af988ab7f72d3749f995db (patch)
treee11a27eb87a2a63e8a2b0f34390403c1cddf8b39 /Lib/xmlrpclib.py
parent84cc9bf722a6261fe6603e67cde38784e533e8b9 (diff)
downloadcpython-78eedce3ffabc0c8d5af988ab7f72d3749f995db.zip
cpython-78eedce3ffabc0c8d5af988ab7f72d3749f995db.tar.gz
cpython-78eedce3ffabc0c8d5af988ab7f72d3749f995db.tar.bz2
updated to current PythonWare version (1.0b3). fixed type checks in
DateTime constructor. use ServerProxy instead of Server in sample code.
Diffstat (limited to 'Lib/xmlrpclib.py')
-rw-r--r--Lib/xmlrpclib.py24
1 files changed, 15 insertions, 9 deletions
diff --git a/Lib/xmlrpclib.py b/Lib/xmlrpclib.py
index 51a974b..51e31de 100644
--- a/Lib/xmlrpclib.py
+++ b/Lib/xmlrpclib.py
@@ -27,7 +27,8 @@
# 2001-02-26 fl Added compare support to wrappers (0.9.9/1.0b1)
# 2001-03-28 fl Make sure response tuple is a singleton
# 2001-03-29 fl Don't require empty params element (from Nicholas Riley)
-# 2001-06-10 fl Folded in _xmlrpclib accelerator support
+# 2001-06-10 fl Folded in _xmlrpclib accelerator support (1.0b2)
+# 2001-08-20 fl Base xmlrpclib.Error on built-in Exception (from Paul Prescod)
#
# Copyright (c) 1999-2001 by Secret Labs AB.
# Copyright (c) 1999-2001 by Fredrik Lundh.
@@ -113,12 +114,12 @@ else:
def _stringify(string):
return string
-__version__ = "1.0b2"
+__version__ = "1.0b3"
# --------------------------------------------------------------------
# Exceptions
-class Error:
+class Error(Exception):
# base class for client errors
pass
@@ -195,9 +196,8 @@ def boolean(value, truefalse=(False, True)):
class DateTime:
def __init__(self, value=0):
- t = type(value)
- if not isinstance(t, StringType):
- if not isinstance(t, TupleType):
+ if not isinstance(value, StringType):
+ if not isinstance(value, TupleType):
if value == 0:
value = time.time()
value = time.localtime(value)
@@ -387,6 +387,11 @@ class Marshaller:
write("</fault>\n")
else:
# parameter block
+ # FIXME: the xml-rpc specification allows us to leave out
+ # the entire <params> block if there are no parameters.
+ # however, changing this may break older code (including
+ # old versions of xmlrpclib.py), so this is better left as
+ # is for now. See @XMLRPC3 for more information. /F
write("<params>\n")
for v in values:
write("<param>\n")
@@ -901,7 +906,7 @@ class ServerProxy:
def __repr__(self):
return (
- "<Server proxy for %s%s>" %
+ "<ServerProxy for %s%s>" %
(self.__host, self.__handler)
)
@@ -914,6 +919,7 @@ class ServerProxy:
# note: to call a remote object with an non-standard name, use
# result getattr(server, "strange-python-name")(args)
+# compatibility
Server = ServerProxy
# --------------------------------------------------------------------
@@ -923,8 +929,8 @@ if __name__ == "__main__":
# simple test program (from the XML-RPC specification)
- # server = Server("http://localhost:8000") # local server
- server = Server("http://betty.userland.com")
+ # server = ServerProxy("http://localhost:8000") # local server
+ server = ServerProxy("http://betty.userland.com")
print server