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
........
This commit is contained in:
Benjamin Peterson 2010-10-31 18:15:00 +00:00
parent bdf5effc6c
commit af577cbb71
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Math:
elif method == 'add':
return params[0] + params[1]
else:
raise 'bad method'
raise ValueError('bad method')
server = SimpleXMLRPCServer(("localhost", 8000))
server.register_introspection_functions()