traceback.print_exc() # TODO logging!
response = u'ERROR '
if result is None:
- response += u'0'
+ response += u'0\n'
else:
response += u'%d\n%s' % (len(result), result)
self.file.sendto(response, addr)
if __name__ == '__main__':
- from dispatcher import handler
-
- @handler
+ @handler(u"Print all the arguments, return nothing.")
def test_handler(*args):
print 'test:', args
- @handler
+ @handler(u"Echo the message passed as argument.")
def echo_handler(message):
print 'echo:', message
return message