beremiz
Clone
Summary
Browse
Changes
Graph
Fixed cast in target code to remove void* arithmetic warning
2013-03-21, Edouard Tisserant
afc4963d8f0c
Fixed cast in target code to remove void* arithmetic warning
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