beremiz
Clone
Summary
Browse
Changes
Graph
Fixed bug with return type in elements that don't need return type tree and dimension
2013-09-10, Laurent Bessard
85ca4fa0720b
Fixed bug with return type in elements that don't need return type tree and dimension
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