]> git.llucax.com Git - software/pymin.git/blobdiff - pymindaemon.py
Factored out a lot of common code.
[software/pymin.git] / pymindaemon.py
index b7e56e4cbf4c06cd7c6736aac8df457c8b13ad27..b440c5279f9b015a0beb7b5882dfaeb0d5403ce3 100644 (file)
@@ -70,11 +70,11 @@ class PyminDaemon(eventloop.EventLoop):
             response = u'ERROR '
         except Exception, e:
             import traceback
-            result = u'Internal server error'
+            result = u'Internal server error\n'
             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)
@@ -88,13 +88,11 @@ class PyminDaemon(eventloop.EventLoop):
 
 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