beremiz
Clone
Summary
Browse
Changes
Graph
Fixed crash when starting with no libraries at all
2012-06-14, Edouard Tisserant
502939f9c477
Fixed crash when starting with no libraries at all
from pyjs.jsonrpc import JSONRPCServiceBase
class JSONRPCService(JSONRPCServiceBase):
def serve(self):
return self.process(request.body.read())
def __call__(self,func):
self.methods[func.__name__]=func
return func