Commit af577cbb authored by Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 86051 via svnmerge from

svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86051 | benjamin.peterson | 2010-10-31 13:13:04 -0500 (Sun, 31 Oct 2010) | 1 line

  more fun with string exceptions
........
parent bdf5effc
...@@ -67,7 +67,7 @@ class Math: ...@@ -67,7 +67,7 @@ class Math:
elif method == 'add': elif method == 'add':
return params[0] + params[1] return params[0] + params[1]
else: else:
raise 'bad method' raise ValueError('bad method')
server = SimpleXMLRPCServer(("localhost", 8000)) server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions() server.register_introspection_functions()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment